@n8n-plus/n8n-plus
Version:
n8n Workflow Automation Tool (plus edition)
9 lines (8 loc) • 472 B
TypeScript
import { ActiveWorkflowRequest } from '../requests';
import { ActiveWorkflowsService } from '../services/active-workflows.service';
export declare class ActiveWorkflowsController {
private readonly activeWorkflowsService;
constructor(activeWorkflowsService: ActiveWorkflowsService);
getActiveWorkflows(req: ActiveWorkflowRequest.GetAllActive): Promise<string[]>;
getActivationError(req: ActiveWorkflowRequest.GetActivationError): Promise<string | null>;
}