Files
plane/web/ce/store/root.store.ts
rahulramesha e181f7ae24 [WEB-2442] feat: Timeline dependencies (#1631)
* fix build

* Timeline Dependency changes

* fix build error
2024-10-30 14:03:10 +05:30

15 lines
328 B
TypeScript

// store
import { CoreRootStore } from "@/store/root.store";
import { ITimelineStore, TimeLineStore } from "./timeline";
export class RootStore extends CoreRootStore {
timelineStore: ITimelineStore;
constructor() {
super();
//@ts-expect-error type-mismatch
this.timelineStore = new TimeLineStore(this);
}
}