8 lines
291 B
TypeScript
8 lines
291 B
TypeScript
import type { BUN_MARIADB_DatabaseSchemaType } from "../types";
|
|
type Params = {
|
|
schema: BUN_MARIADB_DatabaseSchemaType;
|
|
};
|
|
export declare function writeLiveSchema({ schema }: Params): void;
|
|
export declare function readLiveSchema(): BUN_MARIADB_DatabaseSchemaType | undefined;
|
|
export {};
|