From 562f646bac1fde7589efa6d2ea4bb7e73bd297ee Mon Sep 17 00:00:00 2001 From: Seungjin Kang Date: Thu, 31 Oct 2019 19:50:37 +0900 Subject: [PATCH] fix: PluginFunction type is not assignable to type options --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 9a3fd40..a399ff3 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -65,6 +65,6 @@ export default class InfiniteLoading extends Vue { // Slots $slots: Slots; - static install: PluginFunction; + static install: PluginFunction; }