UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, 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); }