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

5 lines
148 B
TypeScript
Raw Permalink Normal View History

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