18 lines
574 B
TypeScript
18 lines
574 B
TypeScript
import { DSQL_DatabaseSchemaType, DSQL_TableSchemaType } from "../../types";
|
|
import { DSQL_DATASQUIREL_USER_DATABASES } from "../../types/dsql";
|
|
type Params = {
|
|
dbFullName: string;
|
|
tableName: string;
|
|
tableSchema: DSQL_TableSchemaType;
|
|
dbSchema: DSQL_DatabaseSchemaType;
|
|
recordedDbEntry?: DSQL_DATASQUIREL_USER_DATABASES;
|
|
isMain?: boolean;
|
|
};
|
|
/**
|
|
* # Update table function
|
|
*/
|
|
export default function updateTableInit({ dbFullName, tableName, tableSchema, recordedDbEntry, isMain, }: Params): Promise<{
|
|
tableID: number | undefined;
|
|
}>;
|
|
export {};
|