@n8n-plus/n8n-plus
Version:
n8n Workflow Automation Tool (plus edition)
11 lines (10 loc) • 396 B
TypeScript
import type { AuthenticatedRequest } from '@n8n/db';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type ExportWorkflowsRequest = AuthenticatedRequest<{}, {}, {
workflowIds: string[];
}>;
type N8nPackagesHandlers = {
exportWorkflows: PublicAPIEndpoint<ExportWorkflowsRequest>;
};
declare const n8nPackagesHandlers: N8nPackagesHandlers;
export = n8nPackagesHandlers;