15 lines
325 B
TypeScript
15 lines
325 B
TypeScript
// 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);
|
|
}
|
|
}
|