UNPKG

n8n

Version:

n8n Workflow Automation Tool

14 lines (13 loc) 556 B
import { ProjectIcon, ProjectType } from '@n8n/api-types'; import { WithTimestampsAndStringId } from './abstract-entity'; import type { ProjectRelation } from './project-relation'; import type { SharedCredentials } from './shared-credentials'; import type { SharedWorkflow } from './shared-workflow'; export declare class Project extends WithTimestampsAndStringId { name: string; type: ProjectType; icon: ProjectIcon; projectRelations: ProjectRelation[]; sharedCredentials: SharedCredentials[]; sharedWorkflows: SharedWorkflow[]; }