type fix
This commit is contained in:
Vendored
+11
@@ -1,3 +1,4 @@
|
||||
import { RequestOptions } from "https";
|
||||
import { Editor } from "tinymce";
|
||||
export type DSQL_DatabaseFullName = string;
|
||||
export interface DSQL_DatabaseSchemaType {
|
||||
@@ -1224,4 +1225,14 @@ export type CookieObject = {
|
||||
sameSite?: "Strict" | "Lax" | "None";
|
||||
priority?: "Low" | "Medium" | "High";
|
||||
};
|
||||
export type HttpRequestParams = RequestOptions & {
|
||||
scheme?: "http" | "https";
|
||||
body?: {
|
||||
[key: string]: any;
|
||||
};
|
||||
query?: {
|
||||
[key: string]: any;
|
||||
};
|
||||
urlEncodedFormBody?: boolean;
|
||||
};
|
||||
export {};
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import type { IncomingMessage, ServerResponse } from "http";
|
||||
import { RequestOptions } from "https";
|
||||
|
||||
import { Editor } from "tinymce";
|
||||
export type DSQL_DatabaseFullName = string;
|
||||
@@ -1442,3 +1443,10 @@ export type CookieObject = {
|
||||
sameSite?: "Strict" | "Lax" | "None";
|
||||
priority?: "Low" | "Medium" | "High";
|
||||
};
|
||||
|
||||
export type HttpRequestParams = RequestOptions & {
|
||||
scheme?: "http" | "https";
|
||||
body?: { [key: string]: any };
|
||||
query?: { [key: string]: any };
|
||||
urlEncodedFormBody?: boolean;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user