๐Ÿ“ฆ theajack / sener

๐Ÿ“„ index.ts ยท 18 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18/*
 * @Author: chenzhongsheng
 * @Date: 2023-03-06 21:22:38
 * @Description: Coding something
 */
export { Mysql } from './mysql-mw';

export * from 'mysql';

import _mysql from 'mysql';

export const mysql = _mysql;

export { Cond, Cond as $ } from './sql/cond';

export { SQL, type ISQLPage, type ICondition, type IWhere } from './sql/sql';
export { Table } from './sql/table';
export * from './extend.d';