OCA_Backend/api/node_modules/sequelize/dist/lib/generic/sql-fragment.d.ts

4 lines
163 B
TypeScript
Raw Normal View History

2022-01-22 13:36:44 +00:00
import { Falsy } from './falsy';
export declare type SQLFragment = string | Falsy | SQLFragment[];
export declare type TruthySQLFragment = string | SQLFragment[];