mirror of https://github.com/vuejs/vue.git
9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
|
import { Vue as _Vue } from "./vue.d";
|
||
|
|
||
|
export type PluginFunction<T> = (Vue: typeof _Vue, options?: T) => void;
|
||
|
|
||
|
export interface PluginObject<T> {
|
||
|
install: PluginFunction<T>;
|
||
|
[key: string]: any;
|
||
|
}
|