UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

12 lines 531 B
import type Quoter from '../interfaces/Quoter'; import type Binder from './Binder'; import type Collector from './Collector'; export default class SubstituteBinds<T extends Collector<T['value']>> implements Collector<T['value']> { protected readonly delegate: T; protected readonly quoter: Quoter; get value(): T['value']; constructor(quoter: Quoter, delegate: T); addBind(bind: string, _: Binder): SubstituteBinds<T>; append(str: string): SubstituteBinds<T>; } //# sourceMappingURL=SubstituteBinds.d.ts.map