UNPKG

test-easy-psql

Version:

Welcome to the test-easy-psql documentation! test-easy-psql is a simple intermediary for querying data in PostgreSQL databases. Whether you're a beginner or an experienced developer, this documentation will help you get started with test-easy-psql and lev

53 lines (51 loc) 905 B
export = Column; declare class Column { constructor({ name, type, nullable, length, defaultValue, min, max, alias, primary, unique, foreign, auto_increment, constraints, }?: { defaultValue?: any; name: any; type: string; nullable?: boolean; length?: any; min?: any; max?: any; alias?: any; primary?: any; unique?: any; foreign?: any; auto_increment?: any; constraints?: any[]; }); columnConfig: { name: any; type: string; nullable?: boolean; length?: any; defaultValue?: any; min?: any; max?: any; alias?: any; primary?: any; unique?: any; foreign?: any; auto_increment?: any; constraints?: any[]; }; get column(): any; get type(): any; get alias(): any; get checks(): any[]; }