From d0c4c26d758f18ac3f33fc7d4867a98b731b129d Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Mon, 30 Nov 2020 22:08:54 +0800 Subject: [PATCH] types(Lazyload): fix typing --- types/lazyload.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/lazyload.d.ts b/types/lazyload.d.ts index 470fbbfdf..6687590c4 100644 --- a/types/lazyload.d.ts +++ b/types/lazyload.d.ts @@ -1,7 +1,7 @@ -import { PluginFunction } from 'vue'; +import { Plugin } from 'vue'; export interface Lazyload { - install: PluginFunction; + install: Plugin; } export const Lazyload: Lazyload;