This commit is contained in:
Benjamin Toby
2025-01-05 09:00:50 +01:00
parent b2f5ff1377
commit 9f77036b91
5 changed files with 22 additions and 21 deletions
+11
View File
@@ -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 {};
+8
View File
@@ -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;
};