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