File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -792,7 +792,7 @@ declare module Immutable {
792
792
* @alias merge
793
793
*/
794
794
concat < C > ( ...valuesOrCollections : Array < Iterable < C > | C > ) : List < T | C > ;
795
- merge < C > ( ...collections : Array < Iterable < C > ) : List < T | C > ;
795
+ merge < C > ( ...collections : Array < Iterable < C > > ) : List < T | C > ;
796
796
797
797
/**
798
798
* Returns a new List with values passed through a
@@ -2511,7 +2511,7 @@ declare module Immutable {
2511
2511
new ( values ?: Partial < TProps > | Iterable < [ string , any ] > ) : Record < TProps > & Readonly < TProps > ;
2512
2512
}
2513
2513
2514
- export function Factory ( values ?: Partial < TProps > | Iterable < [ string , any ] > ) : Record < TProps > & Readonly < TProps > ;
2514
+ export function Factory < TProps extends Object > ( values ?: Partial < TProps > | Iterable < [ string , any ] > ) : Record < TProps > & Readonly < TProps > ;
2515
2515
}
2516
2516
2517
2517
/**
You can’t perform that action at this time.
0 commit comments