From 19772906b6ff4a0529f023147e1cf180cf51bd56 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Thu, 17 Dec 2020 19:36:19 +0800 Subject: [PATCH] types(Lazyload): fix typing #7757 --- types/lazyload.d.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/types/lazyload.d.ts b/types/lazyload.d.ts index 6687590c4..0c1c528f1 100644 --- a/types/lazyload.d.ts +++ b/types/lazyload.d.ts @@ -1,7 +1,5 @@ import { Plugin } from 'vue'; -export interface Lazyload { - install: Plugin; -} +export type Lazyload = Plugin; export const Lazyload: Lazyload;