Updates
This commit is contained in:
Vendored
+13
@@ -2132,4 +2132,17 @@ 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">;
|
||||
};
|
||||
export {};
|
||||
|
||||
Reference in New Issue
Block a user