UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

10 lines (9 loc) 240 B
/** * This class stores query and its parameters */ export declare class Query { query: string; parameters?: any[] | undefined; readonly "@instanceof": symbol; constructor(query: string, parameters?: any[] | undefined); }