6 lines
484 B
TypeScript
6 lines
484 B
TypeScript
|
export type Escapable = undefined | null | boolean | number | string | Date;
|
||
|
export function escapeId(val: string, forbidQualified?: boolean): string;
|
||
|
export function escape(val: Escapable | Escapable[], timeZone?: string, dialect?: string, format?: string): string;
|
||
|
export function format(sql: string, values: unknown[], timeZone?: string, dialect?: string): string;
|
||
|
export function formatNamedParameters(sql: string, values: unknown[], timeZone?: string, dialect?: string): string;
|