mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 07:39:32 +01:00
14 lines
291 B
TypeScript
14 lines
291 B
TypeScript
// store
|
|
import { CoreRootStore } from "@/store/root.store";
|
|
import { ITimelineStore, TimeLineStore } from "./timeline";
|
|
|
|
export class RootStore extends CoreRootStore {
|
|
timelineStore: ITimelineStore;
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this.timelineStore = new TimeLineStore(this);
|
|
}
|
|
}
|