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