mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
19 lines
347 B
TypeScript
19 lines
347 B
TypeScript
|
import { TLogoProps } from "@plane/types";
|
||
|
|
||
|
export type TViewDetails = {
|
||
|
list: boolean;
|
||
|
gantt: boolean;
|
||
|
kanban: boolean;
|
||
|
calendar: boolean;
|
||
|
spreadsheet: boolean;
|
||
|
};
|
||
|
|
||
|
export type TProjectDetails = {
|
||
|
id: string;
|
||
|
identifier: string;
|
||
|
name: string;
|
||
|
cover_image: string | undefined;
|
||
|
logo_props: TLogoProps;
|
||
|
description: string;
|
||
|
};
|