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

5 lines
148 B
TypeScript

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