datasquirel/package-shared/shell/utils/createTable.d.ts
Benjamin Toby c49513c189 Updates
2024-12-06 11:44:26 +01:00

11 lines
404 B
TypeScript

declare function _exports({ dbFullName, tableName, tableInfoArray, dbSchema, clone, tableSchema, recordedDbEntry, }: {
dbFullName: string;
tableName: string;
tableInfoArray: any[];
dbSchema?: import("../../types").DSQL_DatabaseSchemaType[];
tableSchema?: import("../../types").DSQL_TableSchemaType;
recordedDbEntry?: any;
clone?: boolean;
}): Promise<any>;
export = _exports;