UNPKG

@5minds/processcube_engine

Version:

The ProcessCube Engine. Stores and executes BPMNs.

4 lines (3 loc) 255 B
import { NextFunction, Response } from 'express'; import { IHttpRequestWithIdentity } from '../HttpRequestWithIdentity'; export type MiddlewareFunction = (request: IHttpRequestWithIdentity, response: Response, next: NextFunction) => void | Promise<void>;