datasquirel/package-shared/functions/backend/setUserSchemaData.d.ts

6 lines
178 B
TypeScript
Raw Normal View History

2024-12-09 20:48:06 +00:00
declare function _exports({ userId, schemaData }: {
2024-12-06 10:44:26 +00:00
userId: string | number;
schemaData: import("../../types").DSQL_DatabaseSchemaType[];
}): boolean;
2024-12-09 20:48:06 +00:00
export = _exports;