UNPKG

@tachybase/module-workflow

Version:

A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.

12 lines (11 loc) 399 B
import { type Context, type Next } from '@tego/server'; import PluginWorkflowServer from '../../Plugin'; import Trigger from '../../triggers'; export declare class RequestInterceptionTrigger extends Trigger { static TYPE: string; sync: boolean; middleware: (ctx: Context, next: Next) => Promise<never>; constructor(workflow: PluginWorkflowServer); on(): void; off(): void; }