OCA_Backend/api/node_modules/sequelize/dist/lib/generic/sql-fragment.d.ts
2022-01-22 19:06:44 +05:30

4 lines
163 B
TypeScript

import { Falsy } from './falsy';
export declare type SQLFragment = string | Falsy | SQLFragment[];
export declare type TruthySQLFragment = string | SQLFragment[];