* Fix lint

* nl
This commit is contained in:
MeiMei
2020-10-18 01:23:46 +09:00
committed by GitHub
parent c17e97b6a6
commit ba3c62bf9c
3 changed files with 4 additions and 2 deletions

View File

@ -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>;
}
}