UNPKG

n8n

Version:

n8n Workflow Automation Tool

7 lines (6 loc) 207 B
import type { Readable } from 'node:stream'; export interface PackageWriter { writeFile(path: string, content: string | Buffer): void; writeDirectory(path: string): void; finalize(): Readable; }