plane/space/types/project.ts

30 lines
507 B
TypeScript
Raw Normal View History

export interface IWorkspace {
id: string;
name: string;
slug: string;
}
export interface IProject {
id: string;
identifier: string;
name: string;
description: string;
icon: string;
cover_image: string | null;
icon_prop: string | null;
emoji: string | null;
}
export interface IProjectSettings {
comments: boolean;
reactions: boolean;
votes: boolean;
views: {
list: boolean;
gantt: boolean;
kanban: boolean;
calendar: boolean;
spreadsheet: boolean;
};
}