Skip to content

Commit 382fe28

Browse files
committed
whoops, s/List/Stack
1 parent 8f52b36 commit 382fe28

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

dist/immutable.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2211,17 +2211,17 @@ declare module 'immutable' {
22112211
/**
22122212
* @see `Map.prototype.withMutations`
22132213
*/
2214-
withMutations(mutator: (mutable: List<T>) => any): List<T>;
2214+
withMutations(mutator: (mutable: Stack<T>) => any): Stack<T>;
22152215

22162216
/**
22172217
* @see `Map.prototype.asMutable`
22182218
*/
2219-
asMutable(): List<T>;
2219+
asMutable(): Stack<T>;
22202220

22212221
/**
22222222
* @see `Map.prototype.asImmutable`
22232223
*/
2224-
asImmutable(): List<T>;
2224+
asImmutable(): Stack<T>;
22252225
}
22262226

22272227

type-definitions/Immutable.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2211,17 +2211,17 @@ declare module 'immutable' {
22112211
/**
22122212
* @see `Map.prototype.withMutations`
22132213
*/
2214-
withMutations(mutator: (mutable: List<T>) => any): List<T>;
2214+
withMutations(mutator: (mutable: Stack<T>) => any): Stack<T>;
22152215

22162216
/**
22172217
* @see `Map.prototype.asMutable`
22182218
*/
2219-
asMutable(): List<T>;
2219+
asMutable(): Stack<T>;
22202220

22212221
/**
22222222
* @see `Map.prototype.asImmutable`
22232223
*/
2224-
asImmutable(): List<T>;
2224+
asImmutable(): Stack<T>;
22252225
}
22262226

22272227

0 commit comments

Comments
 (0)