15 lines
725 B
TypeScript
15 lines
725 B
TypeScript
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);
|
|
}
|
|
}
|