UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

10 lines (9 loc) 286 B
import { ValueType } from "./utils"; import { FieldType } from "./enums/field-type"; import { PrimaryKeyType } from "./enums/primary-key-type"; export interface Column { value: Array<ValueType>; name: string; type: FieldType; primaryKeyType?: PrimaryKeyType; }