UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 509 B
import { ExportWorkflowsRequestDto } from '@n8n/api-types'; import { AuthenticatedRequest } from '@n8n/db'; import type { Response } from 'express'; import type { Readable } from 'node:stream'; import { N8nPackagesService } from './n8n-packages.service'; export declare class N8nPackagesController { private readonly packagesService; constructor(packagesService: N8nPackagesService); exportWorkflows(req: AuthenticatedRequest, res: Response, body: ExportWorkflowsRequestDto): Promise<Readable>; }