This commit is contained in:
Benjamin Toby
2025-01-25 15:45:27 +01:00
parent 4fe8921bc6
commit 8ecef72efc
6 changed files with 18 additions and 7 deletions
+1
View File
@@ -1308,6 +1308,7 @@ export type DsqlMethodCrudParam<T extends {
}) => Promise<T>;
existingData?: T;
targetId?: string | number;
sanitize?: (data?: T) => T;
};
export declare const DsqlCrudActions: readonly ["insert", "update", "delete", "get"];
export type DsqlCrudQueryObject<T extends {