UNPKG

n8n

Version:

n8n Workflow Automation Tool

9 lines (8 loc) 404 B
import express from 'express'; import { BinaryDataService } from 'n8n-core'; import { BinaryDataRequest } from '../requests'; export declare class BinaryDataController { private readonly binaryDataService; constructor(binaryDataService: BinaryDataService); get(req: BinaryDataRequest, res: express.Response): Promise<import("stream").Readable | express.Response<any, Record<string, any>>>; }