UNPKG

@5minds/processcube_engine

Version:

The ProcessCube Engine. Stores and executes BPMNs.

8 lines (7 loc) 282 B
import { CustomHttpRouteHandler, CustomHttpRouteOptions } from '@5minds/processcube_engine_sdk'; export type CustomHttpRoute = { httpRoute: string; method: 'get' | 'post' | 'put' | 'delete'; routeHandler: CustomHttpRouteHandler; options?: CustomHttpRouteOptions; };