Files
plane/web/ce/store/root.store.ts
2024-10-29 17:57:45 +05:30

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);
}
}