From ba3c62bf9cf710bc13e4ded4df8388639dc0846d Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Sun, 18 Oct 2020 01:23:46 +0900 Subject: Fix lint (#6732) * Fix lint * nl --- src/client/@types/vuex-shim.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/client') 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 + $store: Store; } } -- cgit v1.2.3-freya