summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2020-10-18 01:23:46 +0900
committerGitHub <noreply@github.com>2020-10-18 01:23:46 +0900
commitba3c62bf9cf710bc13e4ded4df8388639dc0846d (patch)
treef9085c28a3413b4fbe339ed4f822ad5d28263098 /src/client
parent12.48.1 (diff)
downloadsharkey-ba3c62bf9cf710bc13e4ded4df8388639dc0846d.tar.gz
sharkey-ba3c62bf9cf710bc13e4ded4df8388639dc0846d.tar.bz2
sharkey-ba3c62bf9cf710bc13e4ded4df8388639dc0846d.zip
Fix lint (#6732)
* Fix lint * nl
Diffstat (limited to 'src/client')
-rw-r--r--src/client/@types/vuex-shim.d.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/@types/vuex-shim.d.ts b/src/client/@types/vuex-shim.d.ts
index b15424d792..5bcc4c460e 100644
--- a/src/client/@types/vuex-shim.d.ts
+++ b/src/client/@types/vuex-shim.d.ts
@@ -2,10 +2,11 @@ import { ComponentCustomProperties } from 'vue';
import { Store } from 'vuex';
declare module '@vue/runtime-core' {
+ // tslint:disable-next-line:no-empty-interface
interface State {
}
interface ComponentCustomProperties {
- $store: Store<State>
+ $store: Store<State>;
}
}