UNPKG

@starbemtech/star-db-query-builder

Version:

A query builder to be used with mysql or postgres

5 lines (4 loc) 243 B
import { Pool } from 'mysql2/promise'; import { IDatabaseClient } from './IDatabaseClient'; import { RetryOptions } from '../default/types'; export declare const createMysqlClient: (pool: Pool, retryOptions?: RetryOptions) => IDatabaseClient;