|
@@ -4,8 +4,8 @@ import mutations from "./mutations";
|
|
|
import actions from "./actions";
|
|
|
import getters from "./getters";
|
|
|
|
|
|
-import { State as _State } from "./_type";
|
|
|
-import { Store } from "./_module";
|
|
|
+import type { State } from "./_type";
|
|
|
+import type { Store } from "./_module";
|
|
|
|
|
|
import { RootState } from "@/store";
|
|
|
|
|
@@ -17,7 +17,6 @@ const appModule: Module<State, RootState> = {
|
|
|
actions,
|
|
|
};
|
|
|
|
|
|
-export type State = _State;
|
|
|
-export { Store };
|
|
|
+export { State, Store };
|
|
|
|
|
|
export default appModule;
|