File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ declare type ComponentOptions = {
53
53
filters ?: { [ key : string ] : Function } ;
54
54
55
55
// context
56
- provide ?: Object | ( ) => Object ;
57
- inject ?: { [ key : string ] : string } | Array < string > ;
56
+ provide ?: { [ key : string | Symbol ] : any } | ( ) => { [ key : string | Symbol ] : any } ;
57
+ inject ?: { [ key : string ] : string | Symbol } | Array < string > ;
58
58
59
59
// component v-model customization
60
60
model ?: {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export interface ComponentOptions<V extends Vue> {
42
42
filters ?: { [ key : string ] : Function } ;
43
43
44
44
provide ?: Object | ( ( ) => Object ) ;
45
- inject ?: { [ key : string ] : string } | Array < string > ;
45
+ inject ?: { [ key : string ] : string | symbol } | Array < string > ;
46
46
47
47
model ?: {
48
48
prop ?: string ;
You can’t perform that action at this time.
0 commit comments