Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plugin.d.ts 201B

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