feat: init
This commit is contained in:
13
apps/web/ce/store/issue/team-views/filter.store.ts
Normal file
13
apps/web/ce/store/issue/team-views/filter.store.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { IProjectViewIssuesFilter } from "@/store/issue/project-views";
|
||||
import { ProjectViewIssuesFilter } from "@/store/issue/project-views";
|
||||
import type { IIssueRootStore } from "@/store/issue/root.store";
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export type ITeamViewIssuesFilter = IProjectViewIssuesFilter;
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export class TeamViewIssuesFilter extends ProjectViewIssuesFilter implements IProjectViewIssuesFilter {
|
||||
constructor(_rootStore: IIssueRootStore) {
|
||||
super(_rootStore);
|
||||
}
|
||||
}
|
||||
2
apps/web/ce/store/issue/team-views/index.ts
Normal file
2
apps/web/ce/store/issue/team-views/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from "./filter.store";
|
||||
export * from "./issue.store";
|
||||
14
apps/web/ce/store/issue/team-views/issue.store.ts
Normal file
14
apps/web/ce/store/issue/team-views/issue.store.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { IProjectViewIssues } from "@/store/issue/project-views";
|
||||
import { ProjectViewIssues } from "@/store/issue/project-views";
|
||||
import type { IIssueRootStore } from "@/store/issue/root.store";
|
||||
import type { ITeamViewIssuesFilter } from "./filter.store";
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export type ITeamViewIssues = IProjectViewIssues;
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export class TeamViewIssues extends ProjectViewIssues implements IProjectViewIssues {
|
||||
constructor(_rootStore: IIssueRootStore, teamViewFilterStore: ITeamViewIssuesFilter) {
|
||||
super(_rootStore, teamViewFilterStore);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user