UNPKG

quick-erd

Version:

quick and easy text-based ERD + code generator for migration, query, typescript types and orm entity

7 lines (6 loc) 358 B
import { Field, ParseResult, Table } from './ast'; export declare function tableToString(table: Table): string; export declare function fieldToString(field: Field): string; export declare function astToText(ast: ParseResult): string; export declare function printTables(tables: Table[]): void; export declare function isInternalTable(name: string): boolean;