feat: init
This commit is contained in:
14
apps/web/ce/store/issue/team-project/issue.store.ts
Normal file
14
apps/web/ce/store/issue/team-project/issue.store.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { IProjectIssues } from "@/store/issue/project";
|
||||
import { ProjectIssues } from "@/store/issue/project";
|
||||
import type { IIssueRootStore } from "@/store/issue/root.store";
|
||||
import type { ITeamProjectWorkItemsFilter } from "./filter.store";
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export type ITeamProjectWorkItems = IProjectIssues;
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export class TeamProjectWorkItems extends ProjectIssues implements ITeamProjectWorkItems {
|
||||
constructor(_rootStore: IIssueRootStore, teamProjectWorkItemsFilterStore: ITeamProjectWorkItemsFilter) {
|
||||
super(_rootStore, teamProjectWorkItemsFilterStore);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user