mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
22 lines
394 B
TypeScript
22 lines
394 B
TypeScript
import { action, computed, makeObservable } from "mobx";
|
|
// types
|
|
import { RootStore } from "../root";
|
|
|
|
export interface IIssueProject {}
|
|
|
|
class IssueProject implements IIssueProject {
|
|
// root store
|
|
rootStore;
|
|
|
|
constructor(_rootStore: RootStore) {
|
|
makeObservable(this, {
|
|
// computed
|
|
// actions
|
|
});
|
|
|
|
this.rootStore = _rootStore;
|
|
}
|
|
}
|
|
|
|
export default IssueProject;
|