[WEB-4514]chore: moved EIssueLayoutTypes enum to types #7416

This commit is contained in:
Vamsi Krishna 2025-07-17 13:01:24 +05:30 committed by GitHub
parent 156ed329ac
commit 9523c28c3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
43 changed files with 82 additions and 84 deletions

View file

@ -5,6 +5,14 @@ import { TIssueReaction, IIssuePublicReaction, IPublicVote } from "./issue_react
import { TIssueRelationTypes } from "./issue_relation";
import { TIssuePublicComment } from "./activity/issue_comment";
export enum EIssueLayoutTypes {
LIST = "list",
KANBAN = "kanban",
CALENDAR = "calendar",
GANTT = "gantt_chart",
SPREADSHEET = "spreadsheet",
}
export enum EIssueServiceType {
ISSUES = "issues",
EPICS = "epics",