21 lines
925 B
TypeScript
21 lines
925 B
TypeScript
import { DSQL_DatabaseSchemaType, DSQL_TableSchemaType } from "../../types";
|
|
type Param = {
|
|
dbFullName: string;
|
|
tableName: string;
|
|
tableInfoArray: any[];
|
|
dbSchema?: DSQL_DatabaseSchemaType[];
|
|
tableSchema?: DSQL_TableSchemaType;
|
|
recordedDbEntry?: any;
|
|
clone?: boolean;
|
|
};
|
|
/**
|
|
* # Create Table Functions
|
|
*/
|
|
export default function createTable({ dbFullName, tableName, tableInfoArray, dbSchema, clone, tableSchema, recordedDbEntry, }: Param): Promise<any>;
|
|
export {};
|
|
/** ****************************************************************************** */
|
|
/** ****************************************************************************** */
|
|
/** ****************************************************************************** */
|
|
/** ****************************************************************************** */
|
|
/** ****************************************************************************** */
|