forked from github/plane
e4f48d6878
* chore: emoji-picker-react package added * chore: emoji and emoji picker component added * chore: emoji picker custom style added * chore: migration of the emoji's * chore: migration changes * chore: project logo prop * chore: added logo props in the serializer * chore: removed unused keys * chore: implement emoji picker throughout the web app * style: emoji icon picker * chore: update project logo renderer in the space app * chore: migrations fixes --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
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;
|
|
};
|
|
}
|