UNPKG

n8n

Version:

n8n Workflow Automation Tool

32 lines (31 loc) 811 B
export declare const dbType: "sqlite" | "mariadb" | "mysqldb" | "postgresdb"; export declare const jsonColumnType: string; export declare const datetimeColumnType: string; declare class BaseEntity { } export declare const WithStringId: { new (...args: any[]): { id: string; generateId(): void; }; } & typeof BaseEntity; export declare const WithTimestamps: { new (...args: any[]): { createdAt: Date; updatedAt: Date; setUpdateDate(): void; }; } & typeof BaseEntity; export declare const WithTimestampsAndStringId: { new (...args: any[]): { id: string; generateId(): void; }; } & { new (...args: any[]): { createdAt: Date; updatedAt: Date; setUpdateDate(): void; }; } & typeof BaseEntity; export {};