UNPKG

n8n

Version:

n8n Workflow Automation Tool

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