8 lines
292 B
TypeScript
8 lines
292 B
TypeScript
import { DSQL_DATASQUIREL_USER_DATABASES } from "@/package-shared/types/dsql";
|
|
type Params = {
|
|
userId: number | string;
|
|
database: DSQL_DATASQUIREL_USER_DATABASES;
|
|
};
|
|
export default function createDbSchemaFromDb({ userId, database, }: Params): Promise<boolean | undefined>;
|
|
export {};
|