File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export declare class ThemeManager {
27
27
dividerColor : string ;
28
28
components : Extendable ;
29
29
} ;
30
- setItem ( key : string , value : string ) : void ;
30
+ setItem ( key : string , value : any ) : void ;
31
31
getItem ( key : string ) : any ;
32
32
setComponentTheme ( componentName : string , overrides : Dictionary < any > | Function ) : void ;
33
33
setComponentForcedTheme ( componentName : string , overrides : Dictionary < any > | Function ) : void ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export class ThemeManager {
32
32
return this . theme ;
33
33
}
34
34
35
- setItem ( key : string , value : string ) {
35
+ setItem ( key : string , value : any ) {
36
36
if ( key === 'components' ) {
37
37
throw new Error ( 'Overriding the "components" key is not possible.' ) ;
38
38
}
You can’t perform that action at this time.
0 commit comments