Skip to content

Commit aa8ea15

Browse files
authored
Merge pull request #488 from megaplan/asMap_any_overload
Make return type of `asMap` to `ObservableMap<any>`.
2 parents c4ab8a9 + 18666f9 commit aa8ea15

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/types/modifiers.ts

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export class AsFlat {
6767
}
6868
}
6969

70+
export function asMap(): ObservableMap<any>;
7071
export function asMap<T>(): ObservableMap<T>;
7172
export function asMap<T>(entries: IMapEntries<T>, modifierFunc?: Function): ObservableMap<T>;
7273
export function asMap<T>(data: IKeyValueMap<T>, modifierFunc?: Function): ObservableMap<T>;

0 commit comments

Comments
 (0)