UNPKG

typeorm

Version:

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

9 lines (8 loc) 204 B
/** * This class stores query and its parameters */ export declare class Query { query: string; parameters?: any[] | undefined; constructor(query: string, parameters?: any[] | undefined); }