UNPKG

quick-erd

Version:

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

8 lines (7 loc) 255 B
import { Field } from '../core/ast'; export declare function textToSqlite(text: string): { up: string; down: string; }; export declare function toSqliteColumnSql(field: Field): string; export declare function wrapSqliteName(name: string): string;