plugin.d.ts 197 B

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