access-db
Version:
[统一数据库的连接]Unified access to all kinds of databases
5 lines (4 loc) • 300 B
TypeScript
import { TTable, MysqlCheckParams, MysqlFindRes, TSentence } from '../index';
declare function fetchFind(table: TTable, params: MysqlCheckParams): Promise<MysqlFindRes>;
declare function fetchFind(table: TTable, params: MysqlCheckParams, query: TSentence): Promise<string>;
export default fetchFind;