UNPKG

464 BPlain TextView Raw
1export {AUTO_KEY_NAME} from './inerface'
2import {NosqlAliyunTablestore} from './nosql-aliyun-tablestore'
3
4export class Table extends NosqlAliyunTablestore {
5 constructor(table: string, config: string = 'default') {
6 super(table, config)
7 }
8}
9
10// TODO 支持从配置参数中动态加载业务自己定义实现的接口(类似工厂方法) ??
11// export const nosql = function () {
12// return require('./nosql-aliyun-tablestore').default
13// }()
\No newline at end of file