UNPKG

drizzle-dbml-generator

Version:
14 lines (9 loc) 340 B
type Options<Schema> = { schema: Schema; out?: string; relational?: boolean; }; declare function pgGenerate<T>(options: Options<T>): string; declare function mysqlGenerate<T>(options: Options<T>): string; declare function sqliteGenerate<T>(options: Options<T>): string; export { mysqlGenerate, pgGenerate, sqliteGenerate };