UNPKG

@lastboy/vue2

Version:

Fork of Vue 2.7.16 with patched CVE-2024-9506 (regex ReDoS vulnerability)

9 lines (6 loc) 197 B
import { Vue as _Vue } from './vue' export type PluginFunction<T> = (Vue: typeof _Vue, options?: T) => void export interface PluginObject<T> { install: PluginFunction<T> [key: string]: any }