mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
30 lines
523 B
TypeScript
30 lines
523 B
TypeScript
import { TProjectLogoProps } from "@plane/types";
|
|
|
|
export interface IWorkspace {
|
|
id: string;
|
|
name: string;
|
|
slug: string;
|
|
}
|
|
|
|
export interface IProject {
|
|
id: string;
|
|
identifier: string;
|
|
name: string;
|
|
description: string;
|
|
cover_image: string | null;
|
|
logo_props: TProjectLogoProps;
|
|
}
|
|
|
|
export interface IProjectSettings {
|
|
comments: boolean;
|
|
reactions: boolean;
|
|
votes: boolean;
|
|
views: {
|
|
list: boolean;
|
|
gantt: boolean;
|
|
kanban: boolean;
|
|
calendar: boolean;
|
|
spreadsheet: boolean;
|
|
};
|
|
}
|