UNPKG

201 BTypeScriptView Raw
1import { Vue as _Vue } from "./vue";
2
3export type PluginFunction<T> = (Vue: typeof _Vue, options?: T) => void;
4
5export interface PluginObject<T> {
6 install: PluginFunction<T>;
7 [key: string]: any;
8}