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