@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
13 lines (12 loc) • 491 B
TypeScript
import express from 'express';
import { ApplicationInfoController, SwaggerController } from '../../Api';
export declare class ApplicationRouter {
expressRouter: express.Router;
private applicationInfoController;
private swaggerController;
constructor(applicationInfoController: ApplicationInfoController, swaggerController: SwaggerController);
init(): Promise<void>;
private initRouting;
private routeToInfoIfJsonContentElseSwagger;
private createGetRoute;
}