UNPKG

ts-sql-query

Version:

Type-safe SQL query builder like QueryDSL or JOOQ in Java or Linq in .Net for TypeScript with MariaDB, MySql, Oracle, PostgreSql, Sqlite and SqlServer support.

7 lines (6 loc) 189 B
import type { AnyDB } from "../databases"; import type { database, type } from "./symbols"; export interface IConnection<DB extends AnyDB> { [database]: DB; [type]: 'Connection'; }