File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ declare type ComponentOptions = {
5353 filters ?: { [ key : string ] : Function } ;
5454
5555 // 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 > ;
5858
5959 // component v-model customization
6060 model ?: {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export interface ComponentOptions<V extends Vue> {
4242 filters ?: { [ key : string ] : Function } ;
4343
4444 provide ?: Object | ( ( ) => Object ) ;
45- inject ?: { [ key : string ] : string } | Array < string > ;
45+ inject ?: { [ key : string ] : string | symbol } | Array < string > ;
4646
4747 model ?: {
4848 prop ?: string ;
You can’t perform that action at this time.
0 commit comments