mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
14 lines
664 B
TypeScript
14 lines
664 B
TypeScript
import { IProjectViewIssues, ProjectViewIssues } from "@/store/issue/project-views";
|
|
import { IIssueRootStore } from "@/store/issue/root.store";
|
|
import { 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);
|
|
}
|
|
}
|