UNPKG

typeorm

Version:

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

27 lines (26 loc) 575 B
import { BaseConnectionOptions } from "../../connection/BaseConnectionOptions"; /** * Websql-specific connection options. */ export interface WebSqlConnectionOptions extends BaseConnectionOptions { /** * Database type. */ readonly type: "websql"; /** * Storage type or path to the storage. */ readonly database: string; /** * Database version. */ readonly version: string; /** * Database description. */ readonly description: string; /** * Database size. */ readonly size: number; }