UNPKG

@starbemtech/star-db-query-builder

Version:

A query builder to be used with mysql or postgres

7 lines (5 loc) 160 B
import { DBClients } from '../default/types' export type IDatabaseClient = { clientType: DBClients query: <T>(sql: string, params?: any[]) => Promise<T> }