@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
14 lines (13 loc) • 628 B
TypeScript
import { Response } from 'express';
import { IHttpRequestWithIdentity } from '../../Tools/Http/index';
import { CorrelationServiceProxy } from '../Services';
import { BaseController } from './BaseController';
export declare class CorrelationController extends BaseController {
private correlationServiceProxy;
constructor(correlationServiceProxy: CorrelationServiceProxy);
getAll(request: IHttpRequestWithIdentity, response: Response): Promise<void>;
getById(request: IHttpRequestWithIdentity, response: Response): Promise<void>;
private parseOffset;
private parseLimit;
private parseSortSettings;
}