UNPKG

484 BTypeScriptView Raw
1export type Escapable = undefined | null | boolean | number | string | Date;
2export function escapeId(val: string, forbidQualified?: boolean): string;
3export function escape(val: Escapable | Escapable[], timeZone?: string, dialect?: string, format?: string): string;
4export function format(sql: string, values: unknown[], timeZone?: string, dialect?: string): string;
5export function formatNamedParameters(sql: string, values: unknown[], timeZone?: string, dialect?: string): string;