fix: moving space constants to package

This commit is contained in:
sriram veeraghanta
2024-12-21 17:17:43 +05:30
parent 23849789f9
commit 60f7edcef8
23 changed files with 343 additions and 322 deletions

View File

@@ -1,11 +1,6 @@
import { IProject, IProjectLite, IWorkspaceLite } from "@plane/types";
export type TStateGroups =
| "backlog"
| "unstarted"
| "started"
| "completed"
| "cancelled";
export type TStateGroups = "backlog" | "unstarted" | "started" | "completed" | "cancelled";
export interface IState {
readonly id: string;