forked from mystiq/hydrogen-web
fix type error again
This commit is contained in:
parent
762925d4a5
commit
6150e91c3f
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ import {BaseObservableMap} from "./BaseObservableMap";
|
|||
export class ObservableMap<K, V> extends BaseObservableMap<K, V> {
|
||||
private readonly _values: Map<K, V>;
|
||||
|
||||
constructor(initialValues?: Iterable<readonly [K, V]>) {
|
||||
constructor(initialValues?: (readonly [K, V])[]) {
|
||||
super();
|
||||
this._values = new Map(initialValues);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue