5 lines
148 B
TypeScript
5 lines
148 B
TypeScript
|
import { Falsy } from './falsy';
|
||
|
|
||
|
export type SQLFragment = string | Falsy | SQLFragment[];
|
||
|
export type TruthySQLFragment = string | SQLFragment[];
|