14 lines
513 B
TypeScript
14 lines
513 B
TypeScript
import { DSQL_DatabaseSchemaType } from "../../types";
|
|
import { DSQL_DATASQUIREL_USER_DATABASES } from "../../types/dsql";
|
|
type Param = {
|
|
userId?: number | string | null;
|
|
dbSchema: DSQL_DatabaseSchemaType;
|
|
isMain?: boolean;
|
|
};
|
|
/**
|
|
* # Create database from Schema Function
|
|
* @requires DSQL_DB_CONN - Gobal Variable for Datasquirel Database
|
|
*/
|
|
export default function checkDbRecordCreateDbSchema({ userId, dbSchema, isMain, }: Param): Promise<DSQL_DATASQUIREL_USER_DATABASES | undefined>;
|
|
export {};
|