types(Lazyload): fix typing #7757

This commit is contained in:
chenjiahan
2020-12-17 19:36:19 +08:00
parent b201088172
commit 19772906b6
+1 -3
View File
@@ -1,7 +1,5 @@
import { Plugin } from 'vue';
export interface Lazyload {
install: Plugin;
}
export type Lazyload = Plugin;
export const Lazyload: Lazyload;