UNPKG

324 BTypeScriptView Raw
1import { InjectKey } from 'vue/types/options';
2export declare type InjectOptions = {
3 from?: InjectKey;
4 default?: any;
5};
6/**
7 * decorator of an inject
8 * @param from key
9 * @return PropertyDecorator
10 */
11export declare function Inject(options?: InjectOptions | InjectKey): import("vue-class-component").VueDecorator;