This commit is contained in:
2025-11-22 14:35:13 +01:00
parent 8eebe3215a
commit 0858b18344
6 changed files with 33 additions and 1 deletions
+13
View File
@@ -2787,3 +2787,16 @@ export type APIConnectionOptions = {
remoteHostPort?: number;
isLocalhost?: boolean;
};
export type CRUDAPIHandlerParams = {
req: IncomingMessage;
};
export type CrudQueryObject<
P extends { [k: string]: any } = { [k: string]: any }
> = {
paths?: string[];
query?: DsqlCrudQueryObject<P>;
userKey?: string;
crudParams?: Omit<DsqlCrudParam<P>, "action" | "table">;
};