9 lines
315 B
TypeScript
9 lines
315 B
TypeScript
import { DSQL_DATASQUIREL_USER_DATABASES } from "../../types/dsql";
|
|
type Params = {
|
|
userId: number | string;
|
|
database: DSQL_DATASQUIREL_USER_DATABASES;
|
|
dbId?: string | number;
|
|
};
|
|
export default function createDbSchemaFromDb({ userId, database, dbId, }: Params): Promise<boolean | undefined>;
|
|
export {};
|