@@ -156,13 +156,16 @@ export interface IObservableValueFactory {
156156
157157export interface IObservableMapFactory {
158158 < K = any , V = any > ( ) : ObservableMap < K , V >
159- < K , V > ( initialValues : IMapEntries < K , V > , options ?: CreateObservableOptions ) : ObservableMap < K , V >
159+ < K , V > ( initialValues ?: IMapEntries < K , V > , options ?: CreateObservableOptions ) : ObservableMap <
160+ K ,
161+ V
162+ >
160163 < K , V > (
161- initialValues : IReadonlyMapEntries < K , V > ,
164+ initialValues ? : IReadonlyMapEntries < K , V > ,
162165 options ?: CreateObservableOptions
163166 ) : ObservableMap < K , V >
164- < K , V > ( initialValues : IKeyValueMap < V > , options ?: CreateObservableOptions ) : ObservableMap < K , V >
165- < K , V > ( initialValues : Map < K , V > , options ?: CreateObservableOptions ) : ObservableMap < K , V >
167+ < K , V > ( initialValues ? : IKeyValueMap < V > , options ?: CreateObservableOptions ) : ObservableMap < K , V >
168+ < K , V > ( initialValues ? : Map < K , V > , options ?: CreateObservableOptions ) : ObservableMap < K , V >
166169 < K = any , V = any > ( initialValues : undefined , options ?: CreateObservableOptions ) : ObservableMap <
167170 K ,
168171 V
0 commit comments