UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 317 B
import type { InstalledNodes } from './InstalledNodes'; import { WithTimestamps } from './AbstractEntity'; export declare class InstalledPackages extends WithTimestamps { packageName: string; installedVersion: string; authorName?: string; authorEmail?: string; installedNodes: InstalledNodes[]; }