@dazejs/framework
Version:
Daze.js - A powerful web framework for Node.js
8 lines (7 loc) • 631 B
TypeScript
export declare const Column: (type?: string, length?: number) => PropertyDecorator;
export declare const CustomColumn: () => PropertyDecorator;
export declare const PrimaryColumn: (type?: string, length?: number) => PropertyDecorator;
export declare const AutoIncrementPrimaryColumn: (type?: string, length?: number) => PropertyDecorator;
export declare const SoftDeleteColumn: (type?: string, length?: number) => PropertyDecorator;
export declare const CreateTimestampColumn: (type?: string, length?: number) => PropertyDecorator;
export declare const UpdateTimestampColumn: (type?: string, length?: number) => PropertyDecorator;