14 lines
390 B
TypeScript
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 {};
|