@easyquery/core
Version:
EasyQuery.JS core modules
16 lines (15 loc) • 532 B
TypeScript
import { Promise } from "es6-promise";
import { DataModel } from "../dm/data_model";
export interface EqBroker {
init(options?: any): any;
getRequestList(options?: any): any;
loadModel(options?: any): any;
getModelPromise(): Promise<DataModel>;
loadQuery(options?: any): any;
loadQueryList(options?: any): any;
newQuery(options: any): any;
saveQuery(options?: any): any;
syncQuery(options: any): any;
buildAndExecute(options?: any): any;
removeQuery(options?: any): any;
}