File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2211,17 +2211,17 @@ declare module 'immutable' {
2211
2211
/**
2212
2212
* @see `Map.prototype.withMutations`
2213
2213
*/
2214
- withMutations ( mutator : ( mutable : List < T > ) => any ) : List < T > ;
2214
+ withMutations ( mutator : ( mutable : Stack < T > ) => any ) : Stack < T > ;
2215
2215
2216
2216
/**
2217
2217
* @see `Map.prototype.asMutable`
2218
2218
*/
2219
- asMutable ( ) : List < T > ;
2219
+ asMutable ( ) : Stack < T > ;
2220
2220
2221
2221
/**
2222
2222
* @see `Map.prototype.asImmutable`
2223
2223
*/
2224
- asImmutable ( ) : List < T > ;
2224
+ asImmutable ( ) : Stack < T > ;
2225
2225
}
2226
2226
2227
2227
Original file line number Diff line number Diff line change @@ -2211,17 +2211,17 @@ declare module 'immutable' {
2211
2211
/**
2212
2212
* @see `Map.prototype.withMutations`
2213
2213
*/
2214
- withMutations ( mutator : ( mutable : List < T > ) => any ) : List < T > ;
2214
+ withMutations ( mutator : ( mutable : Stack < T > ) => any ) : Stack < T > ;
2215
2215
2216
2216
/**
2217
2217
* @see `Map.prototype.asMutable`
2218
2218
*/
2219
- asMutable ( ) : List < T > ;
2219
+ asMutable ( ) : Stack < T > ;
2220
2220
2221
2221
/**
2222
2222
* @see `Map.prototype.asImmutable`
2223
2223
*/
2224
- asImmutable ( ) : List < T > ;
2224
+ asImmutable ( ) : Stack < T > ;
2225
2225
}
2226
2226
2227
2227
You can’t perform that action at this time.
0 commit comments