n8n
Version:
n8n Workflow Automation Tool
13 lines (12 loc) • 517 B
TypeScript
import { WithTimestampsAndStringId } from './AbstractEntity';
import type { ProjectRelation } from './ProjectRelation';
import type { SharedCredentials } from './SharedCredentials';
import type { SharedWorkflow } from './SharedWorkflow';
export type ProjectType = 'personal' | 'team';
export declare class Project extends WithTimestampsAndStringId {
name: string;
type: ProjectType;
projectRelations: ProjectRelation[];
sharedCredentials: SharedCredentials[];
sharedWorkflows: SharedWorkflow[];
}