@pkmn/sim 0.9.14 → 0.9.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,8 +124,8 @@ export declare class BattleQueue {
124
124
  peek(end?: boolean): Action | undefined;
125
125
  push(action: Action): number;
126
126
  unshift(action: Action): number;
127
- [Symbol.iterator](): IterableIterator<Action>;
128
- entries(): IterableIterator<[number, Action]>;
127
+ [Symbol.iterator](): ArrayIterator<Action>;
128
+ entries(): ArrayIterator<[number, Action]>;
129
129
  /**
130
130
  * Takes an ActionChoice, and fills it out into a full Action object.
131
131
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/sim",
3
- "version": "0.9.14",
3
+ "version": "0.9.15",
4
4
  "description": "An automatically generated extraction of just the simulator portion of Pokémon Showdown",
5
5
  "repository": "github:pkmn/ps",
6
6
  "homepage": "https://psim.us",