diff --git a/types/index.d.ts b/types/index.d.ts index 91f1f5d..9a3fd40 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -3,7 +3,7 @@ // Definitions by: Phil Scott // PeachScript -import Vue, { VNode, Component } from 'vue'; +import Vue, { VNode, Component, PluginFunction } from 'vue'; export type SpinnerType = 'default' | 'bubbles' | 'circles' | 'spiral' | 'waveDots'; export type DirectionType = 'top' | 'bottom'; @@ -64,5 +64,7 @@ export default class InfiniteLoading extends Vue { // Slots $slots: Slots; + + static install: PluginFunction; }