mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
* chore: package code refactoring * chore: component restructuring and refactor * chore: comment create improvement
15 lines
624 B
TypeScript
15 lines
624 B
TypeScript
import { IProjectIssues, ProjectIssues } from "@/store/issue/project";
|
|
import { IIssueRootStore } from "@/store/issue/root.store";
|
|
import { IProjectEpicsFilter } from "./filter.store";
|
|
|
|
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
|
|
|
export type IProjectEpics = IProjectIssues;
|
|
|
|
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors
|
|
export class ProjectEpics extends ProjectIssues implements IProjectEpics {
|
|
constructor(_rootStore: IIssueRootStore, issueFilterStore: IProjectEpicsFilter) {
|
|
super(_rootStore, issueFilterStore);
|
|
}
|
|
}
|