/// /** * super-orm * * @author Zongmin Lei */ /** * 键值对对象 */ export interface KVObject { [key: string]: any; } /** * 回调函数 */ export interface Callback { (err: Error | null, ret?: T): void; promise?: Promise; }