UNPKG

vue-2-breadcrumbs

Version:
10 lines (9 loc) 352 B
import { ComponentOptions, PluginObject, VueConstructor } from 'vue'; declare type Dictionary<T> = { [key: string]: T; }; declare class VueBreadcrumbs implements PluginObject<ComponentOptions<Vue>> { install(Vue: VueConstructor<Vue>, options?: Dictionary<any>): void; } declare const _default: VueBreadcrumbs; export default _default;