@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) • 403 B
TypeScript
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: (context: Context, next: Next) => Promise<never>;
constructor(workflow: PluginWorkflowServer);
on(): void;
off(): void;
}