File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- import { ActionTree } from 'vuex'
1
+ import type { ActionTree } from 'vuex'
2
2
import { StateInterface } from './state.types'
3
3
4
4
const Actions : ActionTree < StateInterface , ( ) => void > = {
Original file line number Diff line number Diff line change 1
- import { GetterTree } from 'vuex'
1
+ import type { GetterTree } from 'vuex'
2
2
import { StateInterface } from './state.types'
3
3
4
4
const Getters : GetterTree < StateInterface , ( ) => any > = {
Original file line number Diff line number Diff line change 1
- import { MutationTree } from 'vuex'
1
+ import type { MutationTree } from 'vuex'
2
2
import { StateInterface , AlertInterface } from './state.types'
3
3
4
4
const Mutations : MutationTree < StateInterface > = {
Original file line number Diff line number Diff line change 1
- import Vue , { VNode } from 'vue'
2
-
1
+ import Vue from 'vue'
2
+ import type { VNode } from 'vue'
3
3
declare global {
4
4
namespace JSX {
5
5
type Element = VNode
You can’t perform that action at this time.
0 commit comments