UNPKG

forest-cli

Version:

The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.

18 lines 548 B
export = DefaultValueExpression; /** * Convert SQL expression to Javascript value when possible. * Otherwise, default to using Sequelize.literal(...) which will always work. */ declare class DefaultValueExpression { constructor(dialect: any, type: any, expression: any); dialect: any; type: any; expression: any; parse(): any; parseGeneric(): any; parseMysql(): any; parsePostgres(): any; parseMsSql(): boolean; literalUnlessMatch(regexp: any): any; } //# sourceMappingURL=sequelize-default-value.d.ts.map