UNPKG

@starbemtech/star-db-query-builder

Version:

A query builder to be used with mysql or postgres

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