ccf40f5c26d2693a5fbc11e6eb9a5d638896572fc8ae8b57e7821eb6feec9d545f85bc9b9d4be71c239771709869a9666639aabdf1f037ab854b84aeb601b7 201 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. }