UNPKG

quick-erd

Version:

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

8 lines (7 loc) 527 B
import { Field, Table } from '../core/ast'; export declare function toKnexCreateColumnTypeCode(field: Field, db_client: string): string; export declare function toKnexDefaultValueCode(field: Field): string; export declare function toKnexNullableCode(field: Field): string; export declare function toKnexCreateColumnCode(field: Field, db_client: string): string; export declare function toKnexCreateTableCode(table: Table, db_client: string): string; export declare function textToKnex(text: string, db_client: string): string;