Skip to content

Commit

Permalink
fix(typings): change IOptionManager.get() return type from object to …
Browse files Browse the repository at this point in the history
…any (#150)
  • Loading branch information
ddubrava committed Oct 29, 2021
1 parent 1397284 commit f85dbeb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5259,7 +5259,7 @@ declare namespace ymaps {
type IMultiRouteReferencePoint = string | number[] | geometry.Point;

interface IOptionManager extends IChild<IOptionManager>, IEventEmitter, IFreezable {
get(key: string, defaultValue?: object): object;
get(key: string, defaultValue?: object): any;

getAll(): object;

Expand Down

0 comments on commit f85dbeb

Please sign in to comment.