datasquirel/dist/package-shared/shell/utils/createTable.d.ts
Benjamin Toby d586de0639 Updates
2025-01-14 00:01:02 +01:00

14 lines
390 B
TypeScript

import { DSQL_TableSchemaType } from "../../types";
type Param = {
dbFullName: string;
tableName: string;
tableInfoArray: any[];
tableSchema?: DSQL_TableSchemaType;
recordedDbEntry?: any;
};
/**
* # Create Table Functions
*/
export default function createTable({ dbFullName, tableName, tableInfoArray, tableSchema, recordedDbEntry, }: Param): Promise<any>;
export {};