@minecraft/server 1.0.0-beta.11940b23 → 1.0.0-beta.11940b24
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.
- package/index.d.ts +5 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2813,7 +2813,7 @@ export class EnchantmentList implements Iterable<Enchantment> {
|
|
|
2813
2813
|
* The item slot/type that this collection is applied to.
|
|
2814
2814
|
*/
|
|
2815
2815
|
readonly slot: number;
|
|
2816
|
-
|
|
2816
|
+
[Symbol.iterator](): Iterator<Enchantment>;
|
|
2817
2817
|
/**
|
|
2818
2818
|
* @remarks
|
|
2819
2819
|
* Attempts to add the enchantment to this collection. Returns
|
|
@@ -4145,7 +4145,7 @@ export class EntityItemComponent extends IEntityComponent {
|
|
|
4145
4145
|
* statements, Array.from(iterator), and more.
|
|
4146
4146
|
*/
|
|
4147
4147
|
export class EntityIterator implements Iterable<Entity> {
|
|
4148
|
-
|
|
4148
|
+
[Symbol.iterator](): Iterator<Entity>;
|
|
4149
4149
|
/**
|
|
4150
4150
|
* @remarks
|
|
4151
4151
|
* Retrieves the next item in this iteration. The resulting
|
|
@@ -5564,7 +5564,7 @@ export class EntityType {
|
|
|
5564
5564
|
protected constructor();
|
|
5565
5565
|
}
|
|
5566
5566
|
export class EntityTypeIterator implements Iterable<EntityType> {
|
|
5567
|
-
|
|
5567
|
+
[Symbol.iterator](): Iterator<EntityType>;
|
|
5568
5568
|
next(): IteratorResult<EntityType>;
|
|
5569
5569
|
protected constructor();
|
|
5570
5570
|
}
|
|
@@ -6647,7 +6647,7 @@ export class ItemType {
|
|
|
6647
6647
|
protected constructor();
|
|
6648
6648
|
}
|
|
6649
6649
|
export class ItemTypeIterator implements Iterable<ItemType> {
|
|
6650
|
-
|
|
6650
|
+
[Symbol.iterator](): Iterator<ItemType>;
|
|
6651
6651
|
next(): IteratorResult<ItemType>;
|
|
6652
6652
|
protected constructor();
|
|
6653
6653
|
}
|
|
@@ -13336,7 +13336,7 @@ export class PlayerInventoryComponentContainer extends InventoryComponentContain
|
|
|
13336
13336
|
* statements, Array.from(iterator), and more.
|
|
13337
13337
|
*/
|
|
13338
13338
|
export class PlayerIterator implements Iterable<Player> {
|
|
13339
|
-
|
|
13339
|
+
[Symbol.iterator](): Iterator<Player>;
|
|
13340
13340
|
/**
|
|
13341
13341
|
* @remarks
|
|
13342
13342
|
* Retrieves the next item in this iteration. The resulting
|