UNPKG

@jakub.knejzlik/ts-query

Version:

TypeScript implementation of SQL builder

8 lines (7 loc) 277 B
import { FunctionExpression } from "../Expression"; import { MySQLFlavor } from "./mysql"; export declare class SQLiteFlavor extends MySQLFlavor { protected stringQuotes: string; escapeFunction(fn: FunctionExpression): string; escapeTable(table: string): string; }