feat: init
This commit is contained in:
13
apps/web/ce/store/issue/team/filter.store.ts
Normal file
13
apps/web/ce/store/issue/team/filter.store.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { IProjectIssuesFilter } from "@/store/issue/project";
|
||||
import { ProjectIssuesFilter } from "@/store/issue/project";
|
||||
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 ITeamIssuesFilter = IProjectIssuesFilter;
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export class TeamIssuesFilter extends ProjectIssuesFilter implements IProjectIssuesFilter {
|
||||
constructor(_rootStore: IIssueRootStore) {
|
||||
super(_rootStore);
|
||||
}
|
||||
}
|
||||
2
apps/web/ce/store/issue/team/index.ts
Normal file
2
apps/web/ce/store/issue/team/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from "./filter.store";
|
||||
export * from "./issue.store";
|
||||
14
apps/web/ce/store/issue/team/issue.store.ts
Normal file
14
apps/web/ce/store/issue/team/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 { ITeamIssuesFilter } from "./filter.store";
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export type ITeamIssues = IProjectIssues;
|
||||
|
||||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
||||
export class TeamIssues extends ProjectIssues implements IProjectIssues {
|
||||
constructor(_rootStore: IIssueRootStore, teamIssueFilterStore: ITeamIssuesFilter) {
|
||||
super(_rootStore, teamIssueFilterStore);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user