UNPKG

1.1 kBTypeScriptView Raw
1import { ExecuteAfmModule } from "./execution/execute-afm";
2import { XhrModule } from "./xhr";
3import { MetadataModule } from "./metadata";
4/**
5 * Execution endpoints
6 *
7 * @module execution
8 * @class execution
9 *
10 */
11export declare class ExecutionModule {
12 readonly executeAfm: ExecuteAfmModule["executeAfm"];
13 readonly getExecutionResponse: ExecuteAfmModule["getExecutionResponse"];
14 readonly _executeVisualization: ExecuteAfmModule["_executeVisualization"];
15 readonly _getVisExecutionResponse: ExecuteAfmModule["_getVisExecutionResponse"];
16 readonly getPartialExecutionResult: ExecuteAfmModule["getPartialExecutionResult"];
17 readonly getExecutionResult: ExecuteAfmModule["getExecutionResult"];
18 private readonly executeAfmModule;
19 private readonly xhr;
20 private readonly md;
21 constructor(xhr: XhrModule, md: MetadataModule);
22 getData(projectId: string, columns: any[], executionConfiguration?: any, settings?: any): Promise<any>;
23 mdToExecutionDefinitionsAndColumns(projectId: string, mdObj: any, options?: {}): any;
24 private getExperimentalExecutionsModule;
25}