UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

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; }