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