n8n
Version:
n8n Workflow Automation Tool
18 lines (17 loc) • 491 B
TypeScript
import type { ExportableVariable } from './exportable-variable';
import type { TeamResourceOwner } from './resource-owner';
export interface ExportableProject {
id: string;
name: string;
icon: {
type: 'emoji' | 'icon';
value: string;
} | null;
description: string | null;
type: 'team';
owner: TeamResourceOwner;
variableStubs?: ExportableVariable[];
}
export type ExportableProjectWithFileName = ExportableProject & {
filename: string;
};