import type { Volver } from './Volver' import VolverPlugin from './Volver' export { VolverPlugin } export * from './types' export type { Volver, VolverOptions } from './Volver' // https://vuejs.org/guide/typescript/options-api.html#augmenting-global-properties // Add custom property and extend vue type definition declare module 'vue' { interface ComponentCustomProperties { $vv?: typeof Volver.prototype } }