UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

10 lines (6 loc) 207 B
import type Binder from './Binder' export default interface Collector<T = 'string'> { readonly value: T addBind(str: string, binder: Binder | null): Collector<T> append(str: string): Collector<T> }