UNPKG

awesome-rtk

Version:
8 lines (7 loc) 296 B
import { ISQLDatabase } from '../Interfaces/DB'; import { SQLConnectionConfigType } from '../Types/DB'; export declare class MySQLConnection implements ISQLDatabase { private pool; constructor(config: SQLConnectionConfigType); query<K>(query: string, values?: any[]): Promise<K[]>; }