Skip to content

Commit d537a7a

Browse files
committed
fix: import named eslint error
1 parent dbefdc7 commit d537a7a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

store/global/actions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ActionTree } from 'vuex'
1+
import type { ActionTree } from 'vuex'
22
import { StateInterface } from './state.types'
33

44
const Actions: ActionTree<StateInterface, () => void> = {

store/global/getters.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { GetterTree } from 'vuex'
1+
import type { GetterTree } from 'vuex'
22
import { StateInterface } from './state.types'
33

44
const Getters: GetterTree<StateInterface, () => any> = {

store/global/mutations.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { MutationTree } from 'vuex'
1+
import type { MutationTree } from 'vuex'
22
import { StateInterface, AlertInterface } from './state.types'
33

44
const Mutations: MutationTree<StateInterface> = {

types/vue-shims-tsx.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import Vue, { VNode } from 'vue'
2-
1+
import Vue from 'vue'
2+
import type { VNode } from 'vue'
33
declare global {
44
namespace JSX {
55
type Element = VNode

0 commit comments

Comments
 (0)