@serenityjs/core 0.8.18 → 0.8.19-beta-20260306215039

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @serenityjs/core
2
2
 
3
+ ## 0.8.19-beta-20260306215039
4
+
5
+ ### Patch Changes
6
+
7
+ - [#263](https://github.com/SerenityJS/serenity/pull/263) [`c03296f`](https://github.com/SerenityJS/serenity/commit/c03296fcacccc80ea2ffb31d4adf9d0dea05e07f) Thanks [@AnyBananaGAME](https://github.com/AnyBananaGAME)! - init v0.8.19-beta
8
+
9
+ - Updated dependencies [[`c03296f`](https://github.com/SerenityJS/serenity/commit/c03296fcacccc80ea2ffb31d4adf9d0dea05e07f)]:
10
+ - @serenityjs/data@0.8.19-beta-20260306215039
11
+ - @serenityjs/emitter@0.8.19-beta-20260306215039
12
+ - @serenityjs/logger@0.8.19-beta-20260306215039
13
+ - @serenityjs/nbt@0.8.19-beta-20260306215039
14
+ - @serenityjs/protocol@0.8.19-beta-20260306215039
15
+ - @serenityjs/raknet@0.8.19-beta-20260306215039
16
+
3
17
  ## 0.8.18
4
18
 
5
19
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -9861,11 +9861,47 @@ declare class ItemPalette {
9861
9861
  */
9862
9862
  declare const ItemStackTraits: (typeof ItemStackTrait)[];
9863
9863
 
9864
+ declare class SubCommand<T = unknown> {
9865
+ /**
9866
+ * The name of the subcommand.
9867
+ */
9868
+ readonly name: string;
9869
+ /**
9870
+ * The description of the subcommand.
9871
+ */
9872
+ readonly description: string;
9873
+ /**
9874
+ * The aliases of the subcommand.
9875
+ */
9876
+ readonly aliases: Array<string>;
9877
+ /**
9878
+ * The registry of the subcommand.
9879
+ */
9880
+ readonly registry: CommandRegistry;
9881
+ /**
9882
+ * The callback of the subcommand.
9883
+ */
9884
+ readonly callback: CommandCallback<T>;
9885
+ /**
9886
+ * Creates a new subcommand.
9887
+ * @param name The name of the subcommand.
9888
+ * @param description The description of the subcommand.
9889
+ * @param aliases The aliases of the subcommand.
9890
+ * @param registry The registry of the subcommand.
9891
+ * @param callback The callback of the subcommand.
9892
+ */
9893
+ constructor(name: string, description: string, aliases: Array<string>, registry: CommandRegistry, callback: CommandCallback<T>);
9894
+ }
9895
+
9864
9896
  declare class CommandRegistry {
9865
9897
  /**
9866
9898
  * The overloads of the command.
9867
9899
  */
9868
9900
  readonly overloads: Map<CommandOverload, CommandCallback>;
9901
+ /**
9902
+ * The subcommands of the command.
9903
+ */
9904
+ readonly subcommands: Map<string, SubCommand<unknown>>;
9869
9905
  /**
9870
9906
  * The permissions of the command.
9871
9907
  */
@@ -9885,6 +9921,25 @@ declare class CommandRegistry {
9885
9921
  * @param callback The callback of the overload.
9886
9922
  */
9887
9923
  overload<T extends CommandOverload>(options: T, callback: CommandCallback<CommandArguments<T>>): this;
9924
+ /**
9925
+ * Registers a subcommand with the given name, description, and callback.
9926
+ * @param name The name of the subcommand.
9927
+ * @param description The description of the subcommand.
9928
+ * @param callback The callback of the subcommand.
9929
+ * @param aliases The aliases of the subcommand.
9930
+ * @returns The subcommand that was registered.
9931
+ */
9932
+ registerSubCommand<T = Record<string, unknown>>(name: string, description: string, callback: CommandCallback<T>, aliases?: Array<string>): SubCommand<T>;
9933
+ /**
9934
+ * Registers a subcommand with the given name, description, registry callback, and execution callback.
9935
+ * @param name The name of the subcommand.
9936
+ * @param description The description of the subcommand.
9937
+ * @param registry The registry callback of the subcommand.
9938
+ * @param callback The execution callback of the subcommand.
9939
+ * @param aliases The aliases of the subcommand.
9940
+ * @returns The subcommand that was registered.
9941
+ */
9942
+ registerSubCommand<T = Record<string, unknown>>(name: string, description: string, registry: CommandRegistryCallback, callback: CommandCallback<T>, aliases?: Array<string>): SubCommand<T>;
9888
9943
  }
9889
9944
 
9890
9945
  declare class Command<T = unknown> {
@@ -9896,6 +9951,10 @@ declare class Command<T = unknown> {
9896
9951
  * The description of the command.
9897
9952
  */
9898
9953
  readonly description: string;
9954
+ /**
9955
+ * The aliases of the command.
9956
+ */
9957
+ readonly aliases: Array<string>;
9899
9958
  /**
9900
9959
  * The registry of the command.
9901
9960
  */
@@ -9908,10 +9967,11 @@ declare class Command<T = unknown> {
9908
9967
  * Creates a new command.
9909
9968
  * @param name The name of the command.
9910
9969
  * @param description The description of the command.
9970
+ * @param aliases The aliases of the command.
9911
9971
  * @param registry The registry of the command.
9912
9972
  * @param callback The callback of the command.
9913
9973
  */
9914
- constructor(name: string, description: string, registry: CommandRegistry, callback: CommandCallback<T>);
9974
+ constructor(name: string, description: string, aliases: Array<string>, registry: CommandRegistry, callback: CommandCallback<T>);
9915
9975
  }
9916
9976
 
9917
9977
  declare class CommandArgumentPointer {
@@ -10301,18 +10361,20 @@ declare class CommandPalette {
10301
10361
  * @param name The name of the command.
10302
10362
  * @param description The description of the command.
10303
10363
  * @param callback The callback of the command.
10364
+ * @param aliases The aliases of the command.
10304
10365
  * @returns The command that was registered.
10305
10366
  */
10306
- register<K = NonNullable<unknown>, T = CommandContext<K>>(name: string, description: string, callback: CommandCallback<T>): Command<T>;
10367
+ register<K = NonNullable<unknown>, T = CommandContext<K>>(name: string, description: string, callback: CommandCallback<T>, aliases?: Array<string>): Command<T>;
10307
10368
  /**
10308
10369
  * Registers a new command in the registry.
10309
10370
  * @param name The name of the command.
10310
10371
  * @param description The description of the command.
10311
10372
  * @param registry The registry of the command.
10312
10373
  * @param callback The callback of the command.
10374
+ * @param aliases The aliases of the command.
10313
10375
  * @returns The command that was registered.
10314
10376
  */
10315
- register<K = NonNullable<unknown>, T = CommandContext<K>>(name: string, description: string, registry: CommandRegistryCallback, callback: CommandCallback<T>): Command<T>;
10377
+ register<K = NonNullable<unknown>, T = CommandContext<K>>(name: string, description: string, registry: CommandRegistryCallback, callback: CommandCallback<T>, aliases?: Array<string>): Command<T>;
10316
10378
  /**
10317
10379
  * Unregisters a command from the registry by its name.
10318
10380
  * @param name - The name of the command to be unregistered.
@@ -18327,11 +18389,11 @@ declare class Serenity extends Emitter<WorldEventSignals & ServerEvents> {
18327
18389
  /**
18328
18390
  * Starts the server and begins listening for incoming connections
18329
18391
  */
18330
- start(): void;
18392
+ start(): Promise<void>;
18331
18393
  /**
18332
18394
  * Stops the server and closes all connections
18333
18395
  */
18334
- stop(): void;
18396
+ stop(): Promise<void>;
18335
18397
  /**
18336
18398
  * Sets the message of the day for the server
18337
18399
  * @param motd The message of the day to set
@@ -18848,4 +18910,4 @@ declare class Astar {
18848
18910
  private inSet;
18849
18911
  }
18850
18912
 
18851
- export { AbilityEnum, type AcaciaButtonBlock, type AcaciaDoorBlock, type AcaciaDoubleSlabBlock, type AcaciaFenceGateBlock, type AcaciaHangingSignBlock, type AcaciaLeavesBlock, type AcaciaLogBlock, type AcaciaPressurePlateBlock, type AcaciaSaplingBlock, type AcaciaSlabBlock, type AcaciaStairsBlock, type AcaciaStandingSignBlock, type AcaciaTrapdoorBlock, type AcaciaWallSignBlock, type AcaciaWoodBlock, ActionForm, type ActionFormElement, type ActionFormImage, type ActivatorRailBlock, type AlliumBlock, type AmethystClusterBlock, type AndesiteDoubleSlabBlock, type AndesiteSlabBlock, type AndesiteStairsBlock, type AnvilBlock, Astar, type Attachment, type AzaleaLeavesBlock, type AzaleaLeavesFloweredBlock, type AzureBluetBlock, type BambooBlock, type BambooBlockBlock, type BambooButtonBlock, type BambooDoorBlock, type BambooDoubleSlabBlock, type BambooFenceGateBlock, type BambooHangingSignBlock, type BambooLeafSize, type BambooMosaicDoubleSlabBlock, type BambooMosaicSlabBlock, type BambooMosaicStairsBlock, type BambooPressurePlateBlock, type BambooSaplingBlock, type BambooSlabBlock, type BambooStairsBlock, type BambooStalkThickness, type BambooStandingSignBlock, type BambooTrapdoorBlock, type BambooWallSignBlock, type BarrelBlock, type BasaltBlock, type BedBlock, type BedrockBlock, type BeeNestBlock, type BeehiveBlock, type BeetrootBlock, type BellBlock, type BigDripleafBlock, type BigDripleafTilt, BinaryHeap, type BinaryItem, BiomePalette, BiomeStorage, BiomeType, type BirchButtonBlock, type BirchDoorBlock, type BirchDoubleSlabBlock, type BirchFenceGateBlock, type BirchHangingSignBlock, type BirchLeavesBlock, type BirchLogBlock, type BirchPressurePlateBlock, type BirchSaplingBlock, type BirchSlabBlock, type BirchStairsBlock, type BirchStandingSignBlock, type BirchTrapdoorBlock, type BirchWallSignBlock, type BirchWoodBlock, type BlackCandleBlock, type BlackCandleCakeBlock, type BlackGlazedTerracottaBlock, type BlackstoneDoubleSlabBlock, type BlackstoneSlabBlock, type BlackstoneStairsBlock, type BlackstoneWallBlock, type BlastFurnaceBlock, Block, BlockBarrelTrait, BlockButtonTrait, BlockCardinalDirectionTrait, BlockChestTrait, BlockCommandBlockTrait, BlockContainer, BlockCraftingTableTrait, type BlockDestroyOptions, BlockDirectionTrait, BlockEnum, BlockFacingDirection, BlockIdentifier, type BlockInteractionOptions, BlockInventoryTrait, type BlockInventoryTraitOptions, BlockLevelStorage, BlockMaterialSound, BlockOpenBitTrait, BlockPalette, BlockPermutation, BlockPermutationUpdateSignal, BlockPillarAxisTrait, type BlockPlacementOptions, type BlockRaycastOptions, BlockShulkerBoxTrait, BlockSignTrait, type BlockState, BlockStorage, BlockStructureTrait, BlockSupportTrait, BlockToolType, BlockTorchDirectionTrait, BlockTrait, BlockTraits, BlockType, BlockTypeCollisionBoxComponent, type BlockTypeCollisionBoxComponentOptions, BlockTypeComponent, BlockTypeCraftingTableComponent, type BlockTypeCraftingTableComponentOptions, type BlockTypeDefinition, BlockTypeDestructableByMiningComponent, BlockTypeDisplayNameComponent, BlockTypeFrictionComponent, BlockTypeGeometryComponent, type BlockTypeGeometryComponentOptions, BlockTypeInteractableComponent, BlockTypeLightDampeningComponent, BlockTypeLightEmissionComponent, BlockTypeMaterialInstancesComponent, type BlockTypeMaterialInstancesComponentOptions, type BlockTypeNbtDefinition, type BlockTypeNbtPermutationDefinition, type BlockTypeNbtStateDefinition, type BlockTypeProperties, BlockTypeSelectionBoxComponent, type BlockTypeSelectionBoxComponentOptions, BlockTypeTransformationComponent, type BlockTypeTransformationComponentOptions, BlockUpdateSignal, BlockUpperTrait, BlockUpsideDownBitTrait, BlockWeirdoDirectionTrait, type BlueCandleBlock, type BlueCandleCakeBlock, type BlueGlazedTerracottaBlock, type BlueOrchidBlock, type BoneBlockBlock, BooleanEnum, type BorderBlockBlock, Bossbar, type BrainCoralBlock, type BrainCoralBlockBlock, type BrainCoralFanBlock, type BrainCoralWallFanBlock, type BrewingStandBlock, type BrickDoubleSlabBlock, type BrickSlabBlock, type BrickStairsBlock, type BrownCandleBlock, type BrownCandleCakeBlock, type BrownGlazedTerracottaBlock, type BrownMushroomBlockBlock, type BubbleColumnBlock, type BubbleCoralBlock, type BubbleCoralBlockBlock, type BubbleCoralFanBlock, type BubbleCoralWallFanBlock, type CactusBlock, type CakeBlock, type CalibratedSculkSensorBlock, type CampfireBlock, type CandleBlock, type CandleCakeBlock, CardinalDirection, type CarrotsBlock, type CarvedPumpkinBlock, type CauldronBlock, type CauldronLiquid, type CaveVinesBlock, type CaveVinesBodyWithBerriesBlock, type CaveVinesHeadWithBerriesBlock, type ChainBlock, type ChainCommandBlockBlock, type ChemistryTableBlock, type ChemistryTableType, type CherryButtonBlock, type CherryDoorBlock, type CherryDoubleSlabBlock, type CherryFenceGateBlock, type CherryHangingSignBlock, type CherryLeavesBlock, type CherryLogBlock, type CherryPressurePlateBlock, type CherrySaplingBlock, type CherrySlabBlock, type CherryStairsBlock, type CherryStandingSignBlock, type CherryTrapdoorBlock, type CherryWallSignBlock, type CherryWoodBlock, type ChestBlock, type ChippedAnvilBlock, type ChiselType, type ChiseledBookshelfBlock, type ChiseledQuartzBlockBlock, type ChiseledRedSandstoneBlock, type ChiseledSandstoneBlock, type ChiseledStoneBricksBlock, type ChorusFlowerBlock, Chunk, ChunkReadySignal, ClearEnum, ClientSystemInfo, type CobbledDeepslateDoubleSlabBlock, type CobbledDeepslateSlabBlock, type CobbledDeepslateStairsBlock, type CobbledDeepslateWallBlock, type CobblestoneDoubleSlabBlock, type CobblestoneSlabBlock, type CobblestoneWallBlock, type CocoaBlock, type ColoredTorchBpBlock, type ColoredTorchRgBlock, Command, CommandArgumentPointer, type CommandArguments, type CommandBlockBlock, type CommandCallback, type CommandContext, CommandExecutionState, type CommandOverload, CommandPalette, CommandRegistry, type CommandRegistryCallback, type CommandResponse, CommonCommands, type ComposterBlock, ConsoleInterface, Container, type CopperBulbBlock, type CopperDoorBlock, type CopperTrapdoorBlock, type CoralColor, type CornflowerBlock, type CrackedState, type CrackedStoneBricksBlock, type CrafterBlock, type CraftingRecipeIngredient, CreateContentGroup, CreativeItemDescriptor, type CrimsonButtonBlock, type CrimsonDoorBlock, type CrimsonDoubleSlabBlock, type CrimsonFenceGateBlock, type CrimsonHangingSignBlock, type CrimsonHyphaeBlock, type CrimsonPressurePlateBlock, type CrimsonSlabBlock, type CrimsonStairsBlock, type CrimsonStandingSignBlock, type CrimsonStemBlock, type CrimsonTrapdoorBlock, type CrimsonWallSignBlock, CustomBiomeType, type CustomBlockProperties, CustomBlockType, CustomEntityType, CustomEnum, CustomItemType, type CutCopperSlabBlock, type CutCopperStairsBlock, type CutRedSandstoneBlock, type CutRedSandstoneDoubleSlabBlock, type CutRedSandstoneSlabBlock, type CutSandstoneBlock, type CutSandstoneDoubleSlabBlock, type CutSandstoneSlabBlock, type CyanCandleBlock, type CyanCandleCakeBlock, type CyanGlazedTerracottaBlock, type Damage, type DamagedAnvilBlock, type DarkOakButtonBlock, type DarkOakDoorBlock, type DarkOakDoubleSlabBlock, type DarkOakFenceGateBlock, type DarkOakHangingSignBlock, type DarkOakLeavesBlock, type DarkOakLogBlock, type DarkOakPressurePlateBlock, type DarkOakSaplingBlock, type DarkOakSlabBlock, type DarkOakStairsBlock, type DarkOakTrapdoorBlock, type DarkOakWoodBlock, type DarkPrismarineBlock, type DarkPrismarineDoubleSlabBlock, type DarkPrismarineSlabBlock, type DarkPrismarineStairsBlock, type DarkoakStandingSignBlock, type DarkoakWallSignBlock, type DaylightDetectorBlock, type DaylightDetectorInvertedBlock, type DeadBrainCoralBlock, type DeadBrainCoralBlockBlock, type DeadBrainCoralFanBlock, type DeadBrainCoralWallFanBlock, type DeadBubbleCoralBlock, type DeadBubbleCoralBlockBlock, type DeadBubbleCoralFanBlock, type DeadBubbleCoralWallFanBlock, type DeadFireCoralBlock, type DeadFireCoralBlockBlock, type DeadFireCoralFanBlock, type DeadFireCoralWallFanBlock, type DeadHornCoralBlock, type DeadHornCoralBlockBlock, type DeadHornCoralFanBlock, type DeadHornCoralWallFanBlock, type DeadTubeCoralBlock, type DeadTubeCoralBlockBlock, type DeadTubeCoralFanBlock, type DeadTubeCoralWallFanBlock, type DecoratedPotBlock, type DeepslateBlock, type DeepslateBrickDoubleSlabBlock, type DeepslateBrickSlabBlock, type DeepslateBrickStairsBlock, type DeepslateBrickWallBlock, type DeepslateTileDoubleSlabBlock, type DeepslateTileSlabBlock, type DeepslateTileStairsBlock, type DeepslateTileWallBlock, DefaultDimensionProperties, DefaultItemStackOptions, DefaultResourcesProperties, DefaultWorldProviderProperties, type DeprecatedAnvilBlock, type DetectorRailBlock, DialogueForm, type DialogueFormButton, type DialogueFormProperties, Dimension, type DimensionProperties, type DioriteDoubleSlabBlock, type DioriteSlabBlock, type DioriteStairsBlock, type DispenserBlock, type DoubleCutCopperSlabBlock, type DoublePlantType, type DripstoneThickness, type DropperBlock, EffectAddSignal, EffectEnum, EffectRemoveSignal, EnchantmentsEnum, type EndBrickStairsBlock, type EndPortalFrameBlock, type EndRodBlock, type EndStoneBrickDoubleSlabBlock, type EndStoneBrickSlabBlock, type EnderChestBlock, Entity, EntityActorFlags, EntityAirSupplyTrait, EntityAttributeTrait, EntityAttributeUpdateSignal, EntityBooleanProperty, EntityCollisionTrait, EntityContainer, type EntityDeathOptions, type EntityDespawnOptions, EntityDespawnedSignal, EntityDiedSignal, EntityDimensionChangeSignal, EntityDropItemSignal, type EntityEffectOptions, EntityEffectsTrait, EntityEnum, EntityEnumProperty, EntityEquipmentTrait, type EntityFallOnBlockTraitEvent, EntityFlagUpdateSignal, EntityFloatProperty, EntityGravityTrait, EntityHealthChangedSignal, EntityHealthTrait, EntityHitSignal, EntityHurtSignal, EntityIdentifier, EntityIntProperty, EntityInteractMethod, EntityInventoryTrait, type EntityInventoryTraitOptions, EntityInvisibilityTrait, EntityItemPickupSignal, EntityItemStackTrait, type EntityItemStackTraitOptions, EntityLevelStorage, EntityLookAtPlayerTrait, EntityMetadataUpdateSignal, EntityMovementTrait, EntityNameableTrait, type EntityNpcDialogueProperty, EntityNpcTrait, EntityPalette, EntityPhysicsTrait, type EntityProperties, EntityProperty, type EntityQueryOptions, type EntityRenderedOptions, EntityRideableTrait, EntityRidingTrait, EntitySharedProperties, type EntitySpawnOptions, EntitySpawnedSignal, type EntityTeleportOptions, EntityTrait, EntityTraitEnum, EntityTraits, EntityType, EntityXpOrbTrait, Enum, EventSignal, type ExposedCopperBulbBlock, type ExposedCopperDoorBlock, type ExposedCopperTrapdoorBlock, type ExposedCutCopperSlabBlock, type ExposedCutCopperStairsBlock, type ExposedDoubleCutCopperSlabBlock, FacingDirection, type FarmlandBlock, type FenceGateBlock, type FernBlock, type FileMap, FileSystemProvider, type FireBlock, type FireCoralBlock, type FireCoralBlockBlock, type FireCoralFanBlock, type FireCoralWallFanBlock, type FlowerPotBlock, type FlowerType, type FlowingLavaBlock, type FlowingWaterBlock, Form, type FormParticipant, type FormResult, type FrameBlock, type FrostedIceBlock, type FurnaceBlock, GamemodeEnum, type GlowFrameBlock, type GlowLichenBlock, type GoldenRailBlock, type GraniteDoubleSlabBlock, type GraniteSlabBlock, type GraniteStairsBlock, type GrayCandleBlock, type GrayCandleCakeBlock, type GrayGlazedTerracottaBlock, type GreenCandleBlock, type GreenCandleCakeBlock, type GreenGlazedTerracottaBlock, type GrindstoneBlock, Handlers, type HayBlockBlock, type HeavyWeightedPressurePlateBlock, type HopperBlock, type HornCoralBlock, type HornCoralBlockBlock, type HornCoralFanBlock, type HornCoralWallFanBlock, type IPermissionDefinition, type IPermissionGroup, type IPermissionMember, type IPermissions, type InfestedChiseledStoneBricksBlock, type InfestedCobblestoneBlock, type InfestedCrackedStoneBricksBlock, type InfestedDeepslateBlock, type InfestedMossyStoneBricksBlock, type InfestedStoneBlock, type InfestedStoneBricksBlock, IntegerEnum, InternalProvider, type IronDoorBlock, type IronTrapdoorBlock, ItemCategory, ItemDrop, ItemEnum, ItemGroup, ItemIdentifier, ItemLockMode, ItemPalette, ItemStack, ItemStackBundleTrait, ItemStackDamagedSignal, ItemStackDisplayTrait, type ItemStackDisplayTraitOptions, type ItemStackDroppedOptions, ItemStackDurabilityTrait, ItemStackEnchantableTrait, ItemStackFoodTrait, type ItemStackHotbarDetails, ItemStackInstanceStorage, ItemStackKeepOnDieTrait, ItemStackLevelStorage, ItemStackLiquidContainerTrait, ItemStackLockTrait, type ItemStackOptions, ItemStackShooterTrait, ItemStackSignTrait, ItemStackSpawnEggTrait, ItemStackTrait, ItemStackTraits, type ItemStackUseOnBlockOptions, type ItemStackUseOnEntityOptions, type ItemStackUseOptions, ItemStackWeaponTrait, ItemStackWearableTrait, type ItemStackWearableTraitProperties, ItemToolType, ItemType, ItemTypeBlockPlacerComponent, type ItemTypeBlockPlacerComponentOptions, ItemTypeCanDestroyInCreativeComponent, ItemTypeComponent, ItemTypeComponentCollection, ItemTypeComponents, ItemTypeCooldownComponent, type ItemTypeCooldownComponentOptions, ItemTypeDamageComponent, ItemTypeDiggerComponent, type ItemTypeDiggerComponentOptions, ItemTypeDisplayNameComponent, ItemTypeDurabilityComponent, type ItemTypeDurabilityComponentOptions, type ItemTypeDurabilityDamageChance, ItemTypeFoodComponent, type ItemTypeFoodComponentOptions, type ItemTypeFoodEffectOptions, ItemTypeHandEquippedComponent, ItemTypeIconComponent, type ItemTypeIconComponentOptions, ItemTypeItemPropertiesComponent, ItemTypeMaxStackComponent, type ItemTypeOptions, ItemTypeToolTier, ItemTypeUseAnimationComponent, ItemTypeUseModifiersComponent, type ItemTypeUseModifiersComponentOptions, ItemTypeWearableComponent, type ItemTypeWearableComponentOptions, type ItemWeaponComponent, ItemWearableTier, type JSONLikeArray, type JSONLikeObject, type JSONLikeValue, type JigsawBlock, JsonObjectEnum, type JungleButtonBlock, type JungleDoorBlock, type JungleDoubleSlabBlock, type JungleFenceGateBlock, type JungleHangingSignBlock, type JungleLeavesBlock, type JungleLogBlock, type JunglePressurePlateBlock, type JungleSaplingBlock, type JungleSlabBlock, type JungleStairsBlock, type JungleStandingSignBlock, type JungleTrapdoorBlock, type JungleWallSignBlock, type JungleWoodBlock, type KelpBlock, type LadderBlock, type LanternBlock, type LargeAmethystBudBlock, type LargeFernBlock, type LavaBlock, type LecternBlock, LevelDBKeyBuilder, LevelDBProvider, type LeverBlock, type LeverDirection, type LightBlock0Block, type LightBlock10Block, type LightBlock11Block, type LightBlock12Block, type LightBlock13Block, type LightBlock14Block, type LightBlock15Block, type LightBlock1Block, type LightBlock2Block, type LightBlock3Block, type LightBlock4Block, type LightBlock5Block, type LightBlock6Block, type LightBlock7Block, type LightBlock8Block, type LightBlock9Block, type LightBlueCandleBlock, type LightBlueCandleCakeBlock, type LightBlueGlazedTerracottaBlock, type LightGrayCandleBlock, type LightGrayCandleCakeBlock, type LightWeightedPressurePlateBlock, type LightningRodBlock, type LilacBlock, type LilyOfTheValleyBlock, type LimeCandleBlock, type LimeCandleCakeBlock, type LimeGlazedTerracottaBlock, type LitBlastFurnaceBlock, type LitFurnaceBlock, type LitPumpkinBlock, type LitSmokerBlock, type LoomBlock, type LootEntry, LootPool, LootTable, type MagentaCandleBlock, type MagentaCandleCakeBlock, type MagentaGlazedTerracottaBlock, type MangroveButtonBlock, type MangroveDoorBlock, type MangroveDoubleSlabBlock, type MangroveFenceGateBlock, type MangroveHangingSignBlock, type MangroveLeavesBlock, type MangroveLogBlock, type MangrovePressurePlateBlock, type MangrovePropaguleBlock, type MangroveSlabBlock, type MangroveStairsBlock, type MangroveStandingSignBlock, type MangroveTrapdoorBlock, type MangroveWallSignBlock, type MangroveWoodBlock, type MaterialInstanceOptions, type MediumAmethystBudBlock, type MelonStemBlock, MessageForm, type MinecraftblockFace, type MinecraftcardinalDirection, type MinecraftfacingDirection, type MinecraftverticalHalf, ModalForm, type MonsterEggStoneType, type MossyCobblestoneDoubleSlabBlock, type MossyCobblestoneSlabBlock, type MossyCobblestoneStairsBlock, type MossyStoneBrickDoubleSlabBlock, type MossyStoneBrickSlabBlock, type MossyStoneBrickStairsBlock, type MossyStoneBricksBlock, type MudBrickDoubleSlabBlock, type MudBrickSlabBlock, type MudBrickStairsBlock, type MudBrickWallBlock, type MuddyMangroveRootsBlock, type NetherBrickDoubleSlabBlock, type NetherBrickSlabBlock, type NetherBrickStairsBlock, type NetherWartBlock, Network, NetworkBound, type NetworkEvents, NetworkHandler, type NetworkPacketEvent, type NetworkProperties, type NewLeafType, type NewLogType, Node, NodeEvaluator, type NormalStoneDoubleSlabBlock, type NormalStoneSlabBlock, type NormalStoneStairsBlock, type OakDoubleSlabBlock, type OakHangingSignBlock, type OakLeavesBlock, type OakLogBlock, type OakSaplingBlock, type OakSlabBlock, type OakStairsBlock, type OakWoodBlock, type ObserverBlock, type OchreFroglightBlock, OperatorCommands, type OrangeCandleBlock, type OrangeCandleCakeBlock, type OrangeGlazedTerracottaBlock, type OrangeTulipBlock, type Orientation, type OxeyeDaisyBlock, type OxidizedCopperBulbBlock, type OxidizedCopperDoorBlock, type OxidizedCopperTrapdoorBlock, type OxidizedCutCopperSlabBlock, type OxidizedCutCopperStairsBlock, type OxidizedDoubleCutCopperSlabBlock, type PearlescentFroglightBlock, type PeonyBlock, PermissionGroup, PermissionMember, PermissionsEnum, type PetrifiedOakDoubleSlabBlock, type PetrifiedOakSlabBlock, type PillarAxis, type PinkCandleBlock, type PinkCandleCakeBlock, type PinkGlazedTerracottaBlock, type PinkPetalsBlock, type PinkTulipBlock, type PistonArmCollisionBlock, type PistonBlock, type PitcherCropBlock, type PitcherPlantBlock, type PlaySoundOptions, Player, PlayerAbilities, PlayerAbilityUpdateSignal, type PlayerAnimationOptions, PlayerBreakBlockSignal, PlayerCamera, type PlayerCameraFadeOptions, type PlayerCameraFadeTimeOptions, type PlayerCameraFovOptions, PlayerChatSignal, PlayerChunkRenderingTrait, PlayerClosedContainerSignal, PlayerCombatTrait, PlayerCommandExecutorTrait, PlayerContainerInteractionSignal, PlayerCraftRecipeSignal, PlayerCraftingInputTrait, PlayerCraftingOutputTrait, PlayerCursorTrait, PlayerDropExperienceSignal, type PlayerEaseOptions, PlayerEditSignSignal, PlayerEntityRenderingTrait, PlayerGamemodeChangeSignal, PlayerHungerTrait, PlayerInitializedSignal, PlayerInteractWithBlockSignal, PlayerInteractWithEntitySignal, PlayerJoinSignal, PlayerLeaveSignal, PlayerLevelStorage, PlayerLevelingTrait, PlayerListTrait, PlayerOpenedContainerSignal, PlayerPlaceBlockSignal, type PlayerProperties, PlayerSkin, PlayerStartEmotingSignal, PlayerStartUsingItemSignal, PlayerStopEmotingSignal, PlayerStopUsingItemSignal, PlayerTrait, PlayerUseItemOnBlockSignal, PlayerUseItemOnEntitySignal, PlayerUseItemSignal, type PointedDripstoneBlock, type PolishedAndesiteDoubleSlabBlock, type PolishedAndesiteSlabBlock, type PolishedAndesiteStairsBlock, type PolishedBasaltBlock, type PolishedBlackstoneBrickDoubleSlabBlock, type PolishedBlackstoneBrickSlabBlock, type PolishedBlackstoneBrickStairsBlock, type PolishedBlackstoneBrickWallBlock, type PolishedBlackstoneButtonBlock, type PolishedBlackstoneDoubleSlabBlock, type PolishedBlackstonePressurePlateBlock, type PolishedBlackstoneSlabBlock, type PolishedBlackstoneStairsBlock, type PolishedBlackstoneWallBlock, type PolishedDeepslateDoubleSlabBlock, type PolishedDeepslateSlabBlock, type PolishedDeepslateStairsBlock, type PolishedDeepslateWallBlock, type PolishedDioriteDoubleSlabBlock, type PolishedDioriteSlabBlock, type PolishedDioriteStairsBlock, type PolishedGraniteDoubleSlabBlock, type PolishedGraniteSlabBlock, type PolishedGraniteStairsBlock, type PolishedTuffDoubleSlabBlock, type PolishedTuffSlabBlock, type PolishedTuffStairsBlock, type PolishedTuffWallBlock, type PoppyBlock, type PortalAxis, type PortalBlock, PositionEnum, type PotatoesBlock, type PoweredComparatorBlock, type PoweredRepeaterBlock, type PrismarineBlock, type PrismarineBlockType, type PrismarineBrickDoubleSlabBlock, type PrismarineBrickSlabBlock, type PrismarineBricksBlock, type PrismarineBricksStairsBlock, type PrismarineDoubleSlabBlock, type PrismarineSlabBlock, type PrismarineStairsBlock, type PumpkinBlock, type PumpkinStemBlock, type PurpleCandleBlock, type PurpleCandleCakeBlock, type PurpleGlazedTerracottaBlock, type PurpurBlockBlock, type PurpurDoubleSlabBlock, type PurpurSlabBlock, type PurpurStairsBlock, type QuartzBlockBlock, type QuartzDoubleSlabBlock, type QuartzPillarBlock, type QuartzSlabBlock, type QuartzStairsBlock, type RailBlock, type RawMessage, type RawMessageScore, type RawText, Recipe, type RedCandleBlock, type RedCandleCakeBlock, type RedGlazedTerracottaBlock, type RedMushroomBlockBlock, type RedNetherBrickDoubleSlabBlock, type RedNetherBrickSlabBlock, type RedNetherBrickStairsBlock, type RedSandBlock, type RedSandstoneBlock, type RedSandstoneDoubleSlabBlock, type RedSandstoneSlabBlock, type RedSandstoneStairsBlock, type RedTulipBlock, type RedstoneTorchBlock, type RedstoneWireBlock, type ReedsBlock, type RepeatingCommandBlockBlock, type ResourceManifest, ResourcePack, type ResourcePackEntry, type ResourcePacksProperties, Resources, type ResourcesProperties, type RespawnAnchorBlock, RideableSeat, type RideableSeatOptions, type RoseBushBlock, type SandBlock, type SandStoneType, type SandType, type SandstoneBlock, type SandstoneDoubleSlabBlock, type SandstoneSlabBlock, type SandstoneStairsBlock, type SaplingType, type ScaffoldingBlock, Scoreboard, ScoreboardIdentity, ScoreboardObjective, type ScoreboardObjectiveDisplayOptions, ScreenDisplay, type SculkCatalystBlock, type SculkSensorBlock, type SculkShriekerBlock, type SculkVeinBlock, type SeaGrassType, type SeaPickleBlock, type SeagrassBlock, Serenity, type SerenityProperties, ServerEvent, type ServerEvents, type ServerProperties, ServerState, type SessionPacketEvent, ShapedCraftingRecipe, ShapelessCraftingRecipe, type ShortGrassBlock, type SilverGlazedTerracottaBlock, type SkullBlock, type SmallAmethystBudBlock, type SmallDripleafBlockBlock, type SmokerBlock, type SmoothQuartzBlock, type SmoothQuartzDoubleSlabBlock, type SmoothQuartzSlabBlock, type SmoothQuartzStairsBlock, type SmoothRedSandstoneBlock, type SmoothRedSandstoneDoubleSlabBlock, type SmoothRedSandstoneSlabBlock, type SmoothRedSandstoneStairsBlock, type SmoothSandstoneBlock, type SmoothSandstoneDoubleSlabBlock, type SmoothSandstoneSlabBlock, type SmoothSandstoneStairsBlock, type SmoothStoneDoubleSlabBlock, type SmoothStoneSlabBlock, type SnifferEggBlock, type SnowLayerBlock, SoftEnum, type SoulCampfireBlock, type SoulFireBlock, type SoulLanternBlock, type SoulTorchBlock, type SpongeBlock, type SpongeType, type SpruceButtonBlock, type SpruceDoorBlock, type SpruceDoubleSlabBlock, type SpruceFenceGateBlock, type SpruceHangingSignBlock, type SpruceLeavesBlock, type SpruceLogBlock, type SprucePressurePlateBlock, type SpruceSaplingBlock, type SpruceSlabBlock, type SpruceStairsBlock, type SpruceStandingSignBlock, type SpruceTrapdoorBlock, type SpruceWallSignBlock, type SpruceWoodBlock, type StandingBannerBlock, type StandingSignBlock, type StickyPistonArmCollisionBlock, type StickyPistonBlock, type StoneBrickDoubleSlabBlock, type StoneBrickSlabBlock, type StoneBrickStairsBlock, type StoneBrickType, type StoneBricksBlock, type StoneButtonBlock, type StonePressurePlateBlock, type StoneSlabType, type StoneSlabType2, type StoneSlabType3, type StoneSlabType4, type StoneStairsBlock, type StonecutterBlockBlock, StringEnum, type StrippedAcaciaLogBlock, type StrippedAcaciaWoodBlock, type StrippedBambooBlockBlock, type StrippedBirchLogBlock, type StrippedBirchWoodBlock, type StrippedCherryLogBlock, type StrippedCherryWoodBlock, type StrippedCrimsonHyphaeBlock, type StrippedCrimsonStemBlock, type StrippedDarkOakLogBlock, type StrippedDarkOakWoodBlock, type StrippedJungleLogBlock, type StrippedJungleWoodBlock, type StrippedMangroveLogBlock, type StrippedMangroveWoodBlock, type StrippedOakLogBlock, type StrippedOakWoodBlock, type StrippedSpruceLogBlock, type StrippedSpruceWoodBlock, type StrippedWarpedHyphaeBlock, type StrippedWarpedStemBlock, Structure, type StructureBlockBlock, type StructureBlockType, type StructureData, StructureOperation, type StructurePlaceOptions, type StructureVoidBlock, type StructureVoidType, SubChunk, type SunflowerBlock, SuperflatGenerator, SuperflatWorker, type SuspiciousGravelBlock, type SuspiciousSandBlock, type SweetBerryBushBlock, TagEnum, type TallGrassBlock, type TallGrassType, TargetEnum, TerrainGenerator, type TerrainGeneratorProperties, TerrainWorker, TickSchedule, TimeOfDay, TimeOpertation, type TitleDisplayOptions, type TntBlock, type TorchBlock, TorchDirection, type TorchFacingDirection, type TorchflowerCropBlock, Trait, TraitActionEnum, type TraitOnTickDetails, type TrapdoorBlock, type TrappedChestBlock, type TrialSpawnerBlock, type TripWireBlock, type TripwireHookBlock, type TubeCoralBlock, type TubeCoralBlockBlock, type TubeCoralFanBlock, type TubeCoralWallFanBlock, type TuffBrickDoubleSlabBlock, type TuffBrickSlabBlock, type TuffBrickStairsBlock, type TuffBrickWallBlock, type TuffDoubleSlabBlock, type TuffSlabBlock, type TuffStairsBlock, type TuffWallBlock, type TurtleEggBlock, type TurtleEggCount, type TwistingVinesBlock, type UnderwaterTorchBlock, type UnlitRedstoneTorchBlock, type UnpoweredComparatorBlock, type UnpoweredRepeaterBlock, ValidEnum, type VaultBlock, type VaultState, type VerdantFroglightBlock, VerticalHalfTrait, type VineBlock, VoidGenerator, type WallBannerBlock, type WallBlockType, type WallConnectionTypeEast, type WallConnectionTypeNorth, type WallConnectionTypeSouth, type WallConnectionTypeWest, type WallSignBlock, type WarpedButtonBlock, type WarpedDoorBlock, type WarpedDoubleSlabBlock, type WarpedFenceGateBlock, type WarpedHangingSignBlock, type WarpedHyphaeBlock, type WarpedPressurePlateBlock, type WarpedSlabBlock, type WarpedStairsBlock, type WarpedStandingSignBlock, type WarpedStemBlock, type WarpedTrapdoorBlock, type WarpedWallSignBlock, type WaterBlock, type WaxedCopperBulbBlock, type WaxedCopperDoorBlock, type WaxedCopperTrapdoorBlock, type WaxedCutCopperSlabBlock, type WaxedCutCopperStairsBlock, type WaxedDoubleCutCopperSlabBlock, type WaxedExposedCopperBulbBlock, type WaxedExposedCopperDoorBlock, type WaxedExposedCopperTrapdoorBlock, type WaxedExposedCutCopperSlabBlock, type WaxedExposedCutCopperStairsBlock, type WaxedExposedDoubleCutCopperSlabBlock, type WaxedOxidizedCopperBulbBlock, type WaxedOxidizedCopperDoorBlock, type WaxedOxidizedCopperTrapdoorBlock, type WaxedOxidizedCutCopperSlabBlock, type WaxedOxidizedCutCopperStairsBlock, type WaxedOxidizedDoubleCutCopperSlabBlock, type WaxedWeatheredCopperBulbBlock, type WaxedWeatheredCopperDoorBlock, type WaxedWeatheredCopperTrapdoorBlock, type WaxedWeatheredCutCopperSlabBlock, type WaxedWeatheredCutCopperStairsBlock, type WaxedWeatheredDoubleCutCopperSlabBlock, type WeatheredCopperBulbBlock, type WeatheredCopperDoorBlock, type WeatheredCopperTrapdoorBlock, type WeatheredCutCopperSlabBlock, type WeatheredCutCopperStairsBlock, type WeatheredDoubleCutCopperSlabBlock, type WeepingVinesBlock, type WheatBlock, type WhiteCandleBlock, type WhiteCandleCakeBlock, type WhiteGlazedTerracottaBlock, type WhiteTulipBlock, type WoodenButtonBlock, type WoodenDoorBlock, type WoodenPressurePlateBlock, Worker, World, WorldEnum, WorldEvent, type WorldEventSignals, WorldInitializeSignal, type WorldProperties, WorldProvider, type WorldProviderProperties, WorldTickSignal, type YellowCandleBlock, type YellowCandleCakeBlock, type YellowGlazedTerracottaBlock };
18913
+ export { AbilityEnum, type AcaciaButtonBlock, type AcaciaDoorBlock, type AcaciaDoubleSlabBlock, type AcaciaFenceGateBlock, type AcaciaHangingSignBlock, type AcaciaLeavesBlock, type AcaciaLogBlock, type AcaciaPressurePlateBlock, type AcaciaSaplingBlock, type AcaciaSlabBlock, type AcaciaStairsBlock, type AcaciaStandingSignBlock, type AcaciaTrapdoorBlock, type AcaciaWallSignBlock, type AcaciaWoodBlock, ActionForm, type ActionFormElement, type ActionFormImage, type ActivatorRailBlock, type AlliumBlock, type AmethystClusterBlock, type AndesiteDoubleSlabBlock, type AndesiteSlabBlock, type AndesiteStairsBlock, type AnvilBlock, Astar, type Attachment, type AzaleaLeavesBlock, type AzaleaLeavesFloweredBlock, type AzureBluetBlock, type BambooBlock, type BambooBlockBlock, type BambooButtonBlock, type BambooDoorBlock, type BambooDoubleSlabBlock, type BambooFenceGateBlock, type BambooHangingSignBlock, type BambooLeafSize, type BambooMosaicDoubleSlabBlock, type BambooMosaicSlabBlock, type BambooMosaicStairsBlock, type BambooPressurePlateBlock, type BambooSaplingBlock, type BambooSlabBlock, type BambooStairsBlock, type BambooStalkThickness, type BambooStandingSignBlock, type BambooTrapdoorBlock, type BambooWallSignBlock, type BarrelBlock, type BasaltBlock, type BedBlock, type BedrockBlock, type BeeNestBlock, type BeehiveBlock, type BeetrootBlock, type BellBlock, type BigDripleafBlock, type BigDripleafTilt, BinaryHeap, type BinaryItem, BiomePalette, BiomeStorage, BiomeType, type BirchButtonBlock, type BirchDoorBlock, type BirchDoubleSlabBlock, type BirchFenceGateBlock, type BirchHangingSignBlock, type BirchLeavesBlock, type BirchLogBlock, type BirchPressurePlateBlock, type BirchSaplingBlock, type BirchSlabBlock, type BirchStairsBlock, type BirchStandingSignBlock, type BirchTrapdoorBlock, type BirchWallSignBlock, type BirchWoodBlock, type BlackCandleBlock, type BlackCandleCakeBlock, type BlackGlazedTerracottaBlock, type BlackstoneDoubleSlabBlock, type BlackstoneSlabBlock, type BlackstoneStairsBlock, type BlackstoneWallBlock, type BlastFurnaceBlock, Block, BlockBarrelTrait, BlockButtonTrait, BlockCardinalDirectionTrait, BlockChestTrait, BlockCommandBlockTrait, BlockContainer, BlockCraftingTableTrait, type BlockDestroyOptions, BlockDirectionTrait, BlockEnum, BlockFacingDirection, BlockIdentifier, type BlockInteractionOptions, BlockInventoryTrait, type BlockInventoryTraitOptions, BlockLevelStorage, BlockMaterialSound, BlockOpenBitTrait, BlockPalette, BlockPermutation, BlockPermutationUpdateSignal, BlockPillarAxisTrait, type BlockPlacementOptions, type BlockRaycastOptions, BlockShulkerBoxTrait, BlockSignTrait, type BlockState, BlockStorage, BlockStructureTrait, BlockSupportTrait, BlockToolType, BlockTorchDirectionTrait, BlockTrait, BlockTraits, BlockType, BlockTypeCollisionBoxComponent, type BlockTypeCollisionBoxComponentOptions, BlockTypeComponent, BlockTypeCraftingTableComponent, type BlockTypeCraftingTableComponentOptions, type BlockTypeDefinition, BlockTypeDestructableByMiningComponent, BlockTypeDisplayNameComponent, BlockTypeFrictionComponent, BlockTypeGeometryComponent, type BlockTypeGeometryComponentOptions, BlockTypeInteractableComponent, BlockTypeLightDampeningComponent, BlockTypeLightEmissionComponent, BlockTypeMaterialInstancesComponent, type BlockTypeMaterialInstancesComponentOptions, type BlockTypeNbtDefinition, type BlockTypeNbtPermutationDefinition, type BlockTypeNbtStateDefinition, type BlockTypeProperties, BlockTypeSelectionBoxComponent, type BlockTypeSelectionBoxComponentOptions, BlockTypeTransformationComponent, type BlockTypeTransformationComponentOptions, BlockUpdateSignal, BlockUpperTrait, BlockUpsideDownBitTrait, BlockWeirdoDirectionTrait, type BlueCandleBlock, type BlueCandleCakeBlock, type BlueGlazedTerracottaBlock, type BlueOrchidBlock, type BoneBlockBlock, BooleanEnum, type BorderBlockBlock, Bossbar, type BrainCoralBlock, type BrainCoralBlockBlock, type BrainCoralFanBlock, type BrainCoralWallFanBlock, type BrewingStandBlock, type BrickDoubleSlabBlock, type BrickSlabBlock, type BrickStairsBlock, type BrownCandleBlock, type BrownCandleCakeBlock, type BrownGlazedTerracottaBlock, type BrownMushroomBlockBlock, type BubbleColumnBlock, type BubbleCoralBlock, type BubbleCoralBlockBlock, type BubbleCoralFanBlock, type BubbleCoralWallFanBlock, type CactusBlock, type CakeBlock, type CalibratedSculkSensorBlock, type CampfireBlock, type CandleBlock, type CandleCakeBlock, CardinalDirection, type CarrotsBlock, type CarvedPumpkinBlock, type CauldronBlock, type CauldronLiquid, type CaveVinesBlock, type CaveVinesBodyWithBerriesBlock, type CaveVinesHeadWithBerriesBlock, type ChainBlock, type ChainCommandBlockBlock, type ChemistryTableBlock, type ChemistryTableType, type CherryButtonBlock, type CherryDoorBlock, type CherryDoubleSlabBlock, type CherryFenceGateBlock, type CherryHangingSignBlock, type CherryLeavesBlock, type CherryLogBlock, type CherryPressurePlateBlock, type CherrySaplingBlock, type CherrySlabBlock, type CherryStairsBlock, type CherryStandingSignBlock, type CherryTrapdoorBlock, type CherryWallSignBlock, type CherryWoodBlock, type ChestBlock, type ChippedAnvilBlock, type ChiselType, type ChiseledBookshelfBlock, type ChiseledQuartzBlockBlock, type ChiseledRedSandstoneBlock, type ChiseledSandstoneBlock, type ChiseledStoneBricksBlock, type ChorusFlowerBlock, Chunk, ChunkReadySignal, ClearEnum, ClientSystemInfo, type CobbledDeepslateDoubleSlabBlock, type CobbledDeepslateSlabBlock, type CobbledDeepslateStairsBlock, type CobbledDeepslateWallBlock, type CobblestoneDoubleSlabBlock, type CobblestoneSlabBlock, type CobblestoneWallBlock, type CocoaBlock, type ColoredTorchBpBlock, type ColoredTorchRgBlock, Command, CommandArgumentPointer, type CommandArguments, type CommandBlockBlock, type CommandCallback, type CommandContext, CommandExecutionState, type CommandOverload, CommandPalette, CommandRegistry, type CommandRegistryCallback, type CommandResponse, CommonCommands, type ComposterBlock, ConsoleInterface, Container, type CopperBulbBlock, type CopperDoorBlock, type CopperTrapdoorBlock, type CoralColor, type CornflowerBlock, type CrackedState, type CrackedStoneBricksBlock, type CrafterBlock, type CraftingRecipeIngredient, CreateContentGroup, CreativeItemDescriptor, type CrimsonButtonBlock, type CrimsonDoorBlock, type CrimsonDoubleSlabBlock, type CrimsonFenceGateBlock, type CrimsonHangingSignBlock, type CrimsonHyphaeBlock, type CrimsonPressurePlateBlock, type CrimsonSlabBlock, type CrimsonStairsBlock, type CrimsonStandingSignBlock, type CrimsonStemBlock, type CrimsonTrapdoorBlock, type CrimsonWallSignBlock, CustomBiomeType, type CustomBlockProperties, CustomBlockType, CustomEntityType, CustomEnum, CustomItemType, type CutCopperSlabBlock, type CutCopperStairsBlock, type CutRedSandstoneBlock, type CutRedSandstoneDoubleSlabBlock, type CutRedSandstoneSlabBlock, type CutSandstoneBlock, type CutSandstoneDoubleSlabBlock, type CutSandstoneSlabBlock, type CyanCandleBlock, type CyanCandleCakeBlock, type CyanGlazedTerracottaBlock, type Damage, type DamagedAnvilBlock, type DarkOakButtonBlock, type DarkOakDoorBlock, type DarkOakDoubleSlabBlock, type DarkOakFenceGateBlock, type DarkOakHangingSignBlock, type DarkOakLeavesBlock, type DarkOakLogBlock, type DarkOakPressurePlateBlock, type DarkOakSaplingBlock, type DarkOakSlabBlock, type DarkOakStairsBlock, type DarkOakTrapdoorBlock, type DarkOakWoodBlock, type DarkPrismarineBlock, type DarkPrismarineDoubleSlabBlock, type DarkPrismarineSlabBlock, type DarkPrismarineStairsBlock, type DarkoakStandingSignBlock, type DarkoakWallSignBlock, type DaylightDetectorBlock, type DaylightDetectorInvertedBlock, type DeadBrainCoralBlock, type DeadBrainCoralBlockBlock, type DeadBrainCoralFanBlock, type DeadBrainCoralWallFanBlock, type DeadBubbleCoralBlock, type DeadBubbleCoralBlockBlock, type DeadBubbleCoralFanBlock, type DeadBubbleCoralWallFanBlock, type DeadFireCoralBlock, type DeadFireCoralBlockBlock, type DeadFireCoralFanBlock, type DeadFireCoralWallFanBlock, type DeadHornCoralBlock, type DeadHornCoralBlockBlock, type DeadHornCoralFanBlock, type DeadHornCoralWallFanBlock, type DeadTubeCoralBlock, type DeadTubeCoralBlockBlock, type DeadTubeCoralFanBlock, type DeadTubeCoralWallFanBlock, type DecoratedPotBlock, type DeepslateBlock, type DeepslateBrickDoubleSlabBlock, type DeepslateBrickSlabBlock, type DeepslateBrickStairsBlock, type DeepslateBrickWallBlock, type DeepslateTileDoubleSlabBlock, type DeepslateTileSlabBlock, type DeepslateTileStairsBlock, type DeepslateTileWallBlock, DefaultDimensionProperties, DefaultItemStackOptions, DefaultResourcesProperties, DefaultWorldProviderProperties, type DeprecatedAnvilBlock, type DetectorRailBlock, DialogueForm, type DialogueFormButton, type DialogueFormProperties, Dimension, type DimensionProperties, type DioriteDoubleSlabBlock, type DioriteSlabBlock, type DioriteStairsBlock, type DispenserBlock, type DoubleCutCopperSlabBlock, type DoublePlantType, type DripstoneThickness, type DropperBlock, EffectAddSignal, EffectEnum, EffectRemoveSignal, EnchantmentsEnum, type EndBrickStairsBlock, type EndPortalFrameBlock, type EndRodBlock, type EndStoneBrickDoubleSlabBlock, type EndStoneBrickSlabBlock, type EnderChestBlock, Entity, EntityActorFlags, EntityAirSupplyTrait, EntityAttributeTrait, EntityAttributeUpdateSignal, EntityBooleanProperty, EntityCollisionTrait, EntityContainer, type EntityDeathOptions, type EntityDespawnOptions, EntityDespawnedSignal, EntityDiedSignal, EntityDimensionChangeSignal, EntityDropItemSignal, type EntityEffectOptions, EntityEffectsTrait, EntityEnum, EntityEnumProperty, EntityEquipmentTrait, type EntityFallOnBlockTraitEvent, EntityFlagUpdateSignal, EntityFloatProperty, EntityGravityTrait, EntityHealthChangedSignal, EntityHealthTrait, EntityHitSignal, EntityHurtSignal, EntityIdentifier, EntityIntProperty, EntityInteractMethod, EntityInventoryTrait, type EntityInventoryTraitOptions, EntityInvisibilityTrait, EntityItemPickupSignal, EntityItemStackTrait, type EntityItemStackTraitOptions, EntityLevelStorage, EntityLookAtPlayerTrait, EntityMetadataUpdateSignal, EntityMovementTrait, EntityNameableTrait, type EntityNpcDialogueProperty, EntityNpcTrait, EntityPalette, EntityPhysicsTrait, type EntityProperties, EntityProperty, type EntityQueryOptions, type EntityRenderedOptions, EntityRideableTrait, EntityRidingTrait, EntitySharedProperties, type EntitySpawnOptions, EntitySpawnedSignal, type EntityTeleportOptions, EntityTrait, EntityTraitEnum, EntityTraits, EntityType, EntityXpOrbTrait, Enum, EventSignal, type ExposedCopperBulbBlock, type ExposedCopperDoorBlock, type ExposedCopperTrapdoorBlock, type ExposedCutCopperSlabBlock, type ExposedCutCopperStairsBlock, type ExposedDoubleCutCopperSlabBlock, FacingDirection, type FarmlandBlock, type FenceGateBlock, type FernBlock, type FileMap, FileSystemProvider, type FireBlock, type FireCoralBlock, type FireCoralBlockBlock, type FireCoralFanBlock, type FireCoralWallFanBlock, type FlowerPotBlock, type FlowerType, type FlowingLavaBlock, type FlowingWaterBlock, Form, type FormParticipant, type FormResult, type FrameBlock, type FrostedIceBlock, type FurnaceBlock, GamemodeEnum, type GlowFrameBlock, type GlowLichenBlock, type GoldenRailBlock, type GraniteDoubleSlabBlock, type GraniteSlabBlock, type GraniteStairsBlock, type GrayCandleBlock, type GrayCandleCakeBlock, type GrayGlazedTerracottaBlock, type GreenCandleBlock, type GreenCandleCakeBlock, type GreenGlazedTerracottaBlock, type GrindstoneBlock, Handlers, type HayBlockBlock, type HeavyWeightedPressurePlateBlock, type HopperBlock, type HornCoralBlock, type HornCoralBlockBlock, type HornCoralFanBlock, type HornCoralWallFanBlock, type IPermissionDefinition, type IPermissionGroup, type IPermissionMember, type IPermissions, type InfestedChiseledStoneBricksBlock, type InfestedCobblestoneBlock, type InfestedCrackedStoneBricksBlock, type InfestedDeepslateBlock, type InfestedMossyStoneBricksBlock, type InfestedStoneBlock, type InfestedStoneBricksBlock, IntegerEnum, InternalProvider, type IronDoorBlock, type IronTrapdoorBlock, ItemCategory, ItemDrop, ItemEnum, ItemGroup, ItemIdentifier, ItemLockMode, ItemPalette, ItemStack, ItemStackBundleTrait, ItemStackDamagedSignal, ItemStackDisplayTrait, type ItemStackDisplayTraitOptions, type ItemStackDroppedOptions, ItemStackDurabilityTrait, ItemStackEnchantableTrait, ItemStackFoodTrait, type ItemStackHotbarDetails, ItemStackInstanceStorage, ItemStackKeepOnDieTrait, ItemStackLevelStorage, ItemStackLiquidContainerTrait, ItemStackLockTrait, type ItemStackOptions, ItemStackShooterTrait, ItemStackSignTrait, ItemStackSpawnEggTrait, ItemStackTrait, ItemStackTraits, type ItemStackUseOnBlockOptions, type ItemStackUseOnEntityOptions, type ItemStackUseOptions, ItemStackWeaponTrait, ItemStackWearableTrait, type ItemStackWearableTraitProperties, ItemToolType, ItemType, ItemTypeBlockPlacerComponent, type ItemTypeBlockPlacerComponentOptions, ItemTypeCanDestroyInCreativeComponent, ItemTypeComponent, ItemTypeComponentCollection, ItemTypeComponents, ItemTypeCooldownComponent, type ItemTypeCooldownComponentOptions, ItemTypeDamageComponent, ItemTypeDiggerComponent, type ItemTypeDiggerComponentOptions, ItemTypeDisplayNameComponent, ItemTypeDurabilityComponent, type ItemTypeDurabilityComponentOptions, type ItemTypeDurabilityDamageChance, ItemTypeFoodComponent, type ItemTypeFoodComponentOptions, type ItemTypeFoodEffectOptions, ItemTypeHandEquippedComponent, ItemTypeIconComponent, type ItemTypeIconComponentOptions, ItemTypeItemPropertiesComponent, ItemTypeMaxStackComponent, type ItemTypeOptions, ItemTypeToolTier, ItemTypeUseAnimationComponent, ItemTypeUseModifiersComponent, type ItemTypeUseModifiersComponentOptions, ItemTypeWearableComponent, type ItemTypeWearableComponentOptions, type ItemWeaponComponent, ItemWearableTier, type JSONLikeArray, type JSONLikeObject, type JSONLikeValue, type JigsawBlock, JsonObjectEnum, type JungleButtonBlock, type JungleDoorBlock, type JungleDoubleSlabBlock, type JungleFenceGateBlock, type JungleHangingSignBlock, type JungleLeavesBlock, type JungleLogBlock, type JunglePressurePlateBlock, type JungleSaplingBlock, type JungleSlabBlock, type JungleStairsBlock, type JungleStandingSignBlock, type JungleTrapdoorBlock, type JungleWallSignBlock, type JungleWoodBlock, type KelpBlock, type LadderBlock, type LanternBlock, type LargeAmethystBudBlock, type LargeFernBlock, type LavaBlock, type LecternBlock, LevelDBKeyBuilder, LevelDBProvider, type LeverBlock, type LeverDirection, type LightBlock0Block, type LightBlock10Block, type LightBlock11Block, type LightBlock12Block, type LightBlock13Block, type LightBlock14Block, type LightBlock15Block, type LightBlock1Block, type LightBlock2Block, type LightBlock3Block, type LightBlock4Block, type LightBlock5Block, type LightBlock6Block, type LightBlock7Block, type LightBlock8Block, type LightBlock9Block, type LightBlueCandleBlock, type LightBlueCandleCakeBlock, type LightBlueGlazedTerracottaBlock, type LightGrayCandleBlock, type LightGrayCandleCakeBlock, type LightWeightedPressurePlateBlock, type LightningRodBlock, type LilacBlock, type LilyOfTheValleyBlock, type LimeCandleBlock, type LimeCandleCakeBlock, type LimeGlazedTerracottaBlock, type LitBlastFurnaceBlock, type LitFurnaceBlock, type LitPumpkinBlock, type LitSmokerBlock, type LoomBlock, type LootEntry, LootPool, LootTable, type MagentaCandleBlock, type MagentaCandleCakeBlock, type MagentaGlazedTerracottaBlock, type MangroveButtonBlock, type MangroveDoorBlock, type MangroveDoubleSlabBlock, type MangroveFenceGateBlock, type MangroveHangingSignBlock, type MangroveLeavesBlock, type MangroveLogBlock, type MangrovePressurePlateBlock, type MangrovePropaguleBlock, type MangroveSlabBlock, type MangroveStairsBlock, type MangroveStandingSignBlock, type MangroveTrapdoorBlock, type MangroveWallSignBlock, type MangroveWoodBlock, type MaterialInstanceOptions, type MediumAmethystBudBlock, type MelonStemBlock, MessageForm, type MinecraftblockFace, type MinecraftcardinalDirection, type MinecraftfacingDirection, type MinecraftverticalHalf, ModalForm, type MonsterEggStoneType, type MossyCobblestoneDoubleSlabBlock, type MossyCobblestoneSlabBlock, type MossyCobblestoneStairsBlock, type MossyStoneBrickDoubleSlabBlock, type MossyStoneBrickSlabBlock, type MossyStoneBrickStairsBlock, type MossyStoneBricksBlock, type MudBrickDoubleSlabBlock, type MudBrickSlabBlock, type MudBrickStairsBlock, type MudBrickWallBlock, type MuddyMangroveRootsBlock, type NetherBrickDoubleSlabBlock, type NetherBrickSlabBlock, type NetherBrickStairsBlock, type NetherWartBlock, Network, NetworkBound, type NetworkEvents, NetworkHandler, type NetworkPacketEvent, type NetworkProperties, type NewLeafType, type NewLogType, Node, NodeEvaluator, type NormalStoneDoubleSlabBlock, type NormalStoneSlabBlock, type NormalStoneStairsBlock, type OakDoubleSlabBlock, type OakHangingSignBlock, type OakLeavesBlock, type OakLogBlock, type OakSaplingBlock, type OakSlabBlock, type OakStairsBlock, type OakWoodBlock, type ObserverBlock, type OchreFroglightBlock, OperatorCommands, type OrangeCandleBlock, type OrangeCandleCakeBlock, type OrangeGlazedTerracottaBlock, type OrangeTulipBlock, type Orientation, type OxeyeDaisyBlock, type OxidizedCopperBulbBlock, type OxidizedCopperDoorBlock, type OxidizedCopperTrapdoorBlock, type OxidizedCutCopperSlabBlock, type OxidizedCutCopperStairsBlock, type OxidizedDoubleCutCopperSlabBlock, type PearlescentFroglightBlock, type PeonyBlock, PermissionGroup, PermissionMember, PermissionsEnum, type PetrifiedOakDoubleSlabBlock, type PetrifiedOakSlabBlock, type PillarAxis, type PinkCandleBlock, type PinkCandleCakeBlock, type PinkGlazedTerracottaBlock, type PinkPetalsBlock, type PinkTulipBlock, type PistonArmCollisionBlock, type PistonBlock, type PitcherCropBlock, type PitcherPlantBlock, type PlaySoundOptions, Player, PlayerAbilities, PlayerAbilityUpdateSignal, type PlayerAnimationOptions, PlayerBreakBlockSignal, PlayerCamera, type PlayerCameraFadeOptions, type PlayerCameraFadeTimeOptions, type PlayerCameraFovOptions, PlayerChatSignal, PlayerChunkRenderingTrait, PlayerClosedContainerSignal, PlayerCombatTrait, PlayerCommandExecutorTrait, PlayerContainerInteractionSignal, PlayerCraftRecipeSignal, PlayerCraftingInputTrait, PlayerCraftingOutputTrait, PlayerCursorTrait, PlayerDropExperienceSignal, type PlayerEaseOptions, PlayerEditSignSignal, PlayerEntityRenderingTrait, PlayerGamemodeChangeSignal, PlayerHungerTrait, PlayerInitializedSignal, PlayerInteractWithBlockSignal, PlayerInteractWithEntitySignal, PlayerJoinSignal, PlayerLeaveSignal, PlayerLevelStorage, PlayerLevelingTrait, PlayerListTrait, PlayerOpenedContainerSignal, PlayerPlaceBlockSignal, type PlayerProperties, PlayerSkin, PlayerStartEmotingSignal, PlayerStartUsingItemSignal, PlayerStopEmotingSignal, PlayerStopUsingItemSignal, PlayerTrait, PlayerUseItemOnBlockSignal, PlayerUseItemOnEntitySignal, PlayerUseItemSignal, type PointedDripstoneBlock, type PolishedAndesiteDoubleSlabBlock, type PolishedAndesiteSlabBlock, type PolishedAndesiteStairsBlock, type PolishedBasaltBlock, type PolishedBlackstoneBrickDoubleSlabBlock, type PolishedBlackstoneBrickSlabBlock, type PolishedBlackstoneBrickStairsBlock, type PolishedBlackstoneBrickWallBlock, type PolishedBlackstoneButtonBlock, type PolishedBlackstoneDoubleSlabBlock, type PolishedBlackstonePressurePlateBlock, type PolishedBlackstoneSlabBlock, type PolishedBlackstoneStairsBlock, type PolishedBlackstoneWallBlock, type PolishedDeepslateDoubleSlabBlock, type PolishedDeepslateSlabBlock, type PolishedDeepslateStairsBlock, type PolishedDeepslateWallBlock, type PolishedDioriteDoubleSlabBlock, type PolishedDioriteSlabBlock, type PolishedDioriteStairsBlock, type PolishedGraniteDoubleSlabBlock, type PolishedGraniteSlabBlock, type PolishedGraniteStairsBlock, type PolishedTuffDoubleSlabBlock, type PolishedTuffSlabBlock, type PolishedTuffStairsBlock, type PolishedTuffWallBlock, type PoppyBlock, type PortalAxis, type PortalBlock, PositionEnum, type PotatoesBlock, type PoweredComparatorBlock, type PoweredRepeaterBlock, type PrismarineBlock, type PrismarineBlockType, type PrismarineBrickDoubleSlabBlock, type PrismarineBrickSlabBlock, type PrismarineBricksBlock, type PrismarineBricksStairsBlock, type PrismarineDoubleSlabBlock, type PrismarineSlabBlock, type PrismarineStairsBlock, type PumpkinBlock, type PumpkinStemBlock, type PurpleCandleBlock, type PurpleCandleCakeBlock, type PurpleGlazedTerracottaBlock, type PurpurBlockBlock, type PurpurDoubleSlabBlock, type PurpurSlabBlock, type PurpurStairsBlock, type QuartzBlockBlock, type QuartzDoubleSlabBlock, type QuartzPillarBlock, type QuartzSlabBlock, type QuartzStairsBlock, type RailBlock, type RawMessage, type RawMessageScore, type RawText, Recipe, type RedCandleBlock, type RedCandleCakeBlock, type RedGlazedTerracottaBlock, type RedMushroomBlockBlock, type RedNetherBrickDoubleSlabBlock, type RedNetherBrickSlabBlock, type RedNetherBrickStairsBlock, type RedSandBlock, type RedSandstoneBlock, type RedSandstoneDoubleSlabBlock, type RedSandstoneSlabBlock, type RedSandstoneStairsBlock, type RedTulipBlock, type RedstoneTorchBlock, type RedstoneWireBlock, type ReedsBlock, type RepeatingCommandBlockBlock, type ResourceManifest, ResourcePack, type ResourcePackEntry, type ResourcePacksProperties, Resources, type ResourcesProperties, type RespawnAnchorBlock, RideableSeat, type RideableSeatOptions, type RoseBushBlock, type SandBlock, type SandStoneType, type SandType, type SandstoneBlock, type SandstoneDoubleSlabBlock, type SandstoneSlabBlock, type SandstoneStairsBlock, type SaplingType, type ScaffoldingBlock, Scoreboard, ScoreboardIdentity, ScoreboardObjective, type ScoreboardObjectiveDisplayOptions, ScreenDisplay, type SculkCatalystBlock, type SculkSensorBlock, type SculkShriekerBlock, type SculkVeinBlock, type SeaGrassType, type SeaPickleBlock, type SeagrassBlock, Serenity, type SerenityProperties, ServerEvent, type ServerEvents, type ServerProperties, ServerState, type SessionPacketEvent, ShapedCraftingRecipe, ShapelessCraftingRecipe, type ShortGrassBlock, type SilverGlazedTerracottaBlock, type SkullBlock, type SmallAmethystBudBlock, type SmallDripleafBlockBlock, type SmokerBlock, type SmoothQuartzBlock, type SmoothQuartzDoubleSlabBlock, type SmoothQuartzSlabBlock, type SmoothQuartzStairsBlock, type SmoothRedSandstoneBlock, type SmoothRedSandstoneDoubleSlabBlock, type SmoothRedSandstoneSlabBlock, type SmoothRedSandstoneStairsBlock, type SmoothSandstoneBlock, type SmoothSandstoneDoubleSlabBlock, type SmoothSandstoneSlabBlock, type SmoothSandstoneStairsBlock, type SmoothStoneDoubleSlabBlock, type SmoothStoneSlabBlock, type SnifferEggBlock, type SnowLayerBlock, SoftEnum, type SoulCampfireBlock, type SoulFireBlock, type SoulLanternBlock, type SoulTorchBlock, type SpongeBlock, type SpongeType, type SpruceButtonBlock, type SpruceDoorBlock, type SpruceDoubleSlabBlock, type SpruceFenceGateBlock, type SpruceHangingSignBlock, type SpruceLeavesBlock, type SpruceLogBlock, type SprucePressurePlateBlock, type SpruceSaplingBlock, type SpruceSlabBlock, type SpruceStairsBlock, type SpruceStandingSignBlock, type SpruceTrapdoorBlock, type SpruceWallSignBlock, type SpruceWoodBlock, type StandingBannerBlock, type StandingSignBlock, type StickyPistonArmCollisionBlock, type StickyPistonBlock, type StoneBrickDoubleSlabBlock, type StoneBrickSlabBlock, type StoneBrickStairsBlock, type StoneBrickType, type StoneBricksBlock, type StoneButtonBlock, type StonePressurePlateBlock, type StoneSlabType, type StoneSlabType2, type StoneSlabType3, type StoneSlabType4, type StoneStairsBlock, type StonecutterBlockBlock, StringEnum, type StrippedAcaciaLogBlock, type StrippedAcaciaWoodBlock, type StrippedBambooBlockBlock, type StrippedBirchLogBlock, type StrippedBirchWoodBlock, type StrippedCherryLogBlock, type StrippedCherryWoodBlock, type StrippedCrimsonHyphaeBlock, type StrippedCrimsonStemBlock, type StrippedDarkOakLogBlock, type StrippedDarkOakWoodBlock, type StrippedJungleLogBlock, type StrippedJungleWoodBlock, type StrippedMangroveLogBlock, type StrippedMangroveWoodBlock, type StrippedOakLogBlock, type StrippedOakWoodBlock, type StrippedSpruceLogBlock, type StrippedSpruceWoodBlock, type StrippedWarpedHyphaeBlock, type StrippedWarpedStemBlock, Structure, type StructureBlockBlock, type StructureBlockType, type StructureData, StructureOperation, type StructurePlaceOptions, type StructureVoidBlock, type StructureVoidType, SubChunk, SubCommand, type SunflowerBlock, SuperflatGenerator, SuperflatWorker, type SuspiciousGravelBlock, type SuspiciousSandBlock, type SweetBerryBushBlock, TagEnum, type TallGrassBlock, type TallGrassType, TargetEnum, TerrainGenerator, type TerrainGeneratorProperties, TerrainWorker, TickSchedule, TimeOfDay, TimeOpertation, type TitleDisplayOptions, type TntBlock, type TorchBlock, TorchDirection, type TorchFacingDirection, type TorchflowerCropBlock, Trait, TraitActionEnum, type TraitOnTickDetails, type TrapdoorBlock, type TrappedChestBlock, type TrialSpawnerBlock, type TripWireBlock, type TripwireHookBlock, type TubeCoralBlock, type TubeCoralBlockBlock, type TubeCoralFanBlock, type TubeCoralWallFanBlock, type TuffBrickDoubleSlabBlock, type TuffBrickSlabBlock, type TuffBrickStairsBlock, type TuffBrickWallBlock, type TuffDoubleSlabBlock, type TuffSlabBlock, type TuffStairsBlock, type TuffWallBlock, type TurtleEggBlock, type TurtleEggCount, type TwistingVinesBlock, type UnderwaterTorchBlock, type UnlitRedstoneTorchBlock, type UnpoweredComparatorBlock, type UnpoweredRepeaterBlock, ValidEnum, type VaultBlock, type VaultState, type VerdantFroglightBlock, VerticalHalfTrait, type VineBlock, VoidGenerator, type WallBannerBlock, type WallBlockType, type WallConnectionTypeEast, type WallConnectionTypeNorth, type WallConnectionTypeSouth, type WallConnectionTypeWest, type WallSignBlock, type WarpedButtonBlock, type WarpedDoorBlock, type WarpedDoubleSlabBlock, type WarpedFenceGateBlock, type WarpedHangingSignBlock, type WarpedHyphaeBlock, type WarpedPressurePlateBlock, type WarpedSlabBlock, type WarpedStairsBlock, type WarpedStandingSignBlock, type WarpedStemBlock, type WarpedTrapdoorBlock, type WarpedWallSignBlock, type WaterBlock, type WaxedCopperBulbBlock, type WaxedCopperDoorBlock, type WaxedCopperTrapdoorBlock, type WaxedCutCopperSlabBlock, type WaxedCutCopperStairsBlock, type WaxedDoubleCutCopperSlabBlock, type WaxedExposedCopperBulbBlock, type WaxedExposedCopperDoorBlock, type WaxedExposedCopperTrapdoorBlock, type WaxedExposedCutCopperSlabBlock, type WaxedExposedCutCopperStairsBlock, type WaxedExposedDoubleCutCopperSlabBlock, type WaxedOxidizedCopperBulbBlock, type WaxedOxidizedCopperDoorBlock, type WaxedOxidizedCopperTrapdoorBlock, type WaxedOxidizedCutCopperSlabBlock, type WaxedOxidizedCutCopperStairsBlock, type WaxedOxidizedDoubleCutCopperSlabBlock, type WaxedWeatheredCopperBulbBlock, type WaxedWeatheredCopperDoorBlock, type WaxedWeatheredCopperTrapdoorBlock, type WaxedWeatheredCutCopperSlabBlock, type WaxedWeatheredCutCopperStairsBlock, type WaxedWeatheredDoubleCutCopperSlabBlock, type WeatheredCopperBulbBlock, type WeatheredCopperDoorBlock, type WeatheredCopperTrapdoorBlock, type WeatheredCutCopperSlabBlock, type WeatheredCutCopperStairsBlock, type WeatheredDoubleCutCopperSlabBlock, type WeepingVinesBlock, type WheatBlock, type WhiteCandleBlock, type WhiteCandleCakeBlock, type WhiteGlazedTerracottaBlock, type WhiteTulipBlock, type WoodenButtonBlock, type WoodenDoorBlock, type WoodenPressurePlateBlock, Worker, World, WorldEnum, WorldEvent, type WorldEventSignals, WorldInitializeSignal, type WorldProperties, WorldProvider, type WorldProviderProperties, WorldTickSignal, type YellowCandleBlock, type YellowCandleCakeBlock, type YellowGlazedTerracottaBlock };
package/dist/index.d.ts CHANGED
@@ -9861,11 +9861,47 @@ declare class ItemPalette {
9861
9861
  */
9862
9862
  declare const ItemStackTraits: (typeof ItemStackTrait)[];
9863
9863
 
9864
+ declare class SubCommand<T = unknown> {
9865
+ /**
9866
+ * The name of the subcommand.
9867
+ */
9868
+ readonly name: string;
9869
+ /**
9870
+ * The description of the subcommand.
9871
+ */
9872
+ readonly description: string;
9873
+ /**
9874
+ * The aliases of the subcommand.
9875
+ */
9876
+ readonly aliases: Array<string>;
9877
+ /**
9878
+ * The registry of the subcommand.
9879
+ */
9880
+ readonly registry: CommandRegistry;
9881
+ /**
9882
+ * The callback of the subcommand.
9883
+ */
9884
+ readonly callback: CommandCallback<T>;
9885
+ /**
9886
+ * Creates a new subcommand.
9887
+ * @param name The name of the subcommand.
9888
+ * @param description The description of the subcommand.
9889
+ * @param aliases The aliases of the subcommand.
9890
+ * @param registry The registry of the subcommand.
9891
+ * @param callback The callback of the subcommand.
9892
+ */
9893
+ constructor(name: string, description: string, aliases: Array<string>, registry: CommandRegistry, callback: CommandCallback<T>);
9894
+ }
9895
+
9864
9896
  declare class CommandRegistry {
9865
9897
  /**
9866
9898
  * The overloads of the command.
9867
9899
  */
9868
9900
  readonly overloads: Map<CommandOverload, CommandCallback>;
9901
+ /**
9902
+ * The subcommands of the command.
9903
+ */
9904
+ readonly subcommands: Map<string, SubCommand<unknown>>;
9869
9905
  /**
9870
9906
  * The permissions of the command.
9871
9907
  */
@@ -9885,6 +9921,25 @@ declare class CommandRegistry {
9885
9921
  * @param callback The callback of the overload.
9886
9922
  */
9887
9923
  overload<T extends CommandOverload>(options: T, callback: CommandCallback<CommandArguments<T>>): this;
9924
+ /**
9925
+ * Registers a subcommand with the given name, description, and callback.
9926
+ * @param name The name of the subcommand.
9927
+ * @param description The description of the subcommand.
9928
+ * @param callback The callback of the subcommand.
9929
+ * @param aliases The aliases of the subcommand.
9930
+ * @returns The subcommand that was registered.
9931
+ */
9932
+ registerSubCommand<T = Record<string, unknown>>(name: string, description: string, callback: CommandCallback<T>, aliases?: Array<string>): SubCommand<T>;
9933
+ /**
9934
+ * Registers a subcommand with the given name, description, registry callback, and execution callback.
9935
+ * @param name The name of the subcommand.
9936
+ * @param description The description of the subcommand.
9937
+ * @param registry The registry callback of the subcommand.
9938
+ * @param callback The execution callback of the subcommand.
9939
+ * @param aliases The aliases of the subcommand.
9940
+ * @returns The subcommand that was registered.
9941
+ */
9942
+ registerSubCommand<T = Record<string, unknown>>(name: string, description: string, registry: CommandRegistryCallback, callback: CommandCallback<T>, aliases?: Array<string>): SubCommand<T>;
9888
9943
  }
9889
9944
 
9890
9945
  declare class Command<T = unknown> {
@@ -9896,6 +9951,10 @@ declare class Command<T = unknown> {
9896
9951
  * The description of the command.
9897
9952
  */
9898
9953
  readonly description: string;
9954
+ /**
9955
+ * The aliases of the command.
9956
+ */
9957
+ readonly aliases: Array<string>;
9899
9958
  /**
9900
9959
  * The registry of the command.
9901
9960
  */
@@ -9908,10 +9967,11 @@ declare class Command<T = unknown> {
9908
9967
  * Creates a new command.
9909
9968
  * @param name The name of the command.
9910
9969
  * @param description The description of the command.
9970
+ * @param aliases The aliases of the command.
9911
9971
  * @param registry The registry of the command.
9912
9972
  * @param callback The callback of the command.
9913
9973
  */
9914
- constructor(name: string, description: string, registry: CommandRegistry, callback: CommandCallback<T>);
9974
+ constructor(name: string, description: string, aliases: Array<string>, registry: CommandRegistry, callback: CommandCallback<T>);
9915
9975
  }
9916
9976
 
9917
9977
  declare class CommandArgumentPointer {
@@ -10301,18 +10361,20 @@ declare class CommandPalette {
10301
10361
  * @param name The name of the command.
10302
10362
  * @param description The description of the command.
10303
10363
  * @param callback The callback of the command.
10364
+ * @param aliases The aliases of the command.
10304
10365
  * @returns The command that was registered.
10305
10366
  */
10306
- register<K = NonNullable<unknown>, T = CommandContext<K>>(name: string, description: string, callback: CommandCallback<T>): Command<T>;
10367
+ register<K = NonNullable<unknown>, T = CommandContext<K>>(name: string, description: string, callback: CommandCallback<T>, aliases?: Array<string>): Command<T>;
10307
10368
  /**
10308
10369
  * Registers a new command in the registry.
10309
10370
  * @param name The name of the command.
10310
10371
  * @param description The description of the command.
10311
10372
  * @param registry The registry of the command.
10312
10373
  * @param callback The callback of the command.
10374
+ * @param aliases The aliases of the command.
10313
10375
  * @returns The command that was registered.
10314
10376
  */
10315
- register<K = NonNullable<unknown>, T = CommandContext<K>>(name: string, description: string, registry: CommandRegistryCallback, callback: CommandCallback<T>): Command<T>;
10377
+ register<K = NonNullable<unknown>, T = CommandContext<K>>(name: string, description: string, registry: CommandRegistryCallback, callback: CommandCallback<T>, aliases?: Array<string>): Command<T>;
10316
10378
  /**
10317
10379
  * Unregisters a command from the registry by its name.
10318
10380
  * @param name - The name of the command to be unregistered.
@@ -18327,11 +18389,11 @@ declare class Serenity extends Emitter<WorldEventSignals & ServerEvents> {
18327
18389
  /**
18328
18390
  * Starts the server and begins listening for incoming connections
18329
18391
  */
18330
- start(): void;
18392
+ start(): Promise<void>;
18331
18393
  /**
18332
18394
  * Stops the server and closes all connections
18333
18395
  */
18334
- stop(): void;
18396
+ stop(): Promise<void>;
18335
18397
  /**
18336
18398
  * Sets the message of the day for the server
18337
18399
  * @param motd The message of the day to set
@@ -18848,4 +18910,4 @@ declare class Astar {
18848
18910
  private inSet;
18849
18911
  }
18850
18912
 
18851
- export { AbilityEnum, type AcaciaButtonBlock, type AcaciaDoorBlock, type AcaciaDoubleSlabBlock, type AcaciaFenceGateBlock, type AcaciaHangingSignBlock, type AcaciaLeavesBlock, type AcaciaLogBlock, type AcaciaPressurePlateBlock, type AcaciaSaplingBlock, type AcaciaSlabBlock, type AcaciaStairsBlock, type AcaciaStandingSignBlock, type AcaciaTrapdoorBlock, type AcaciaWallSignBlock, type AcaciaWoodBlock, ActionForm, type ActionFormElement, type ActionFormImage, type ActivatorRailBlock, type AlliumBlock, type AmethystClusterBlock, type AndesiteDoubleSlabBlock, type AndesiteSlabBlock, type AndesiteStairsBlock, type AnvilBlock, Astar, type Attachment, type AzaleaLeavesBlock, type AzaleaLeavesFloweredBlock, type AzureBluetBlock, type BambooBlock, type BambooBlockBlock, type BambooButtonBlock, type BambooDoorBlock, type BambooDoubleSlabBlock, type BambooFenceGateBlock, type BambooHangingSignBlock, type BambooLeafSize, type BambooMosaicDoubleSlabBlock, type BambooMosaicSlabBlock, type BambooMosaicStairsBlock, type BambooPressurePlateBlock, type BambooSaplingBlock, type BambooSlabBlock, type BambooStairsBlock, type BambooStalkThickness, type BambooStandingSignBlock, type BambooTrapdoorBlock, type BambooWallSignBlock, type BarrelBlock, type BasaltBlock, type BedBlock, type BedrockBlock, type BeeNestBlock, type BeehiveBlock, type BeetrootBlock, type BellBlock, type BigDripleafBlock, type BigDripleafTilt, BinaryHeap, type BinaryItem, BiomePalette, BiomeStorage, BiomeType, type BirchButtonBlock, type BirchDoorBlock, type BirchDoubleSlabBlock, type BirchFenceGateBlock, type BirchHangingSignBlock, type BirchLeavesBlock, type BirchLogBlock, type BirchPressurePlateBlock, type BirchSaplingBlock, type BirchSlabBlock, type BirchStairsBlock, type BirchStandingSignBlock, type BirchTrapdoorBlock, type BirchWallSignBlock, type BirchWoodBlock, type BlackCandleBlock, type BlackCandleCakeBlock, type BlackGlazedTerracottaBlock, type BlackstoneDoubleSlabBlock, type BlackstoneSlabBlock, type BlackstoneStairsBlock, type BlackstoneWallBlock, type BlastFurnaceBlock, Block, BlockBarrelTrait, BlockButtonTrait, BlockCardinalDirectionTrait, BlockChestTrait, BlockCommandBlockTrait, BlockContainer, BlockCraftingTableTrait, type BlockDestroyOptions, BlockDirectionTrait, BlockEnum, BlockFacingDirection, BlockIdentifier, type BlockInteractionOptions, BlockInventoryTrait, type BlockInventoryTraitOptions, BlockLevelStorage, BlockMaterialSound, BlockOpenBitTrait, BlockPalette, BlockPermutation, BlockPermutationUpdateSignal, BlockPillarAxisTrait, type BlockPlacementOptions, type BlockRaycastOptions, BlockShulkerBoxTrait, BlockSignTrait, type BlockState, BlockStorage, BlockStructureTrait, BlockSupportTrait, BlockToolType, BlockTorchDirectionTrait, BlockTrait, BlockTraits, BlockType, BlockTypeCollisionBoxComponent, type BlockTypeCollisionBoxComponentOptions, BlockTypeComponent, BlockTypeCraftingTableComponent, type BlockTypeCraftingTableComponentOptions, type BlockTypeDefinition, BlockTypeDestructableByMiningComponent, BlockTypeDisplayNameComponent, BlockTypeFrictionComponent, BlockTypeGeometryComponent, type BlockTypeGeometryComponentOptions, BlockTypeInteractableComponent, BlockTypeLightDampeningComponent, BlockTypeLightEmissionComponent, BlockTypeMaterialInstancesComponent, type BlockTypeMaterialInstancesComponentOptions, type BlockTypeNbtDefinition, type BlockTypeNbtPermutationDefinition, type BlockTypeNbtStateDefinition, type BlockTypeProperties, BlockTypeSelectionBoxComponent, type BlockTypeSelectionBoxComponentOptions, BlockTypeTransformationComponent, type BlockTypeTransformationComponentOptions, BlockUpdateSignal, BlockUpperTrait, BlockUpsideDownBitTrait, BlockWeirdoDirectionTrait, type BlueCandleBlock, type BlueCandleCakeBlock, type BlueGlazedTerracottaBlock, type BlueOrchidBlock, type BoneBlockBlock, BooleanEnum, type BorderBlockBlock, Bossbar, type BrainCoralBlock, type BrainCoralBlockBlock, type BrainCoralFanBlock, type BrainCoralWallFanBlock, type BrewingStandBlock, type BrickDoubleSlabBlock, type BrickSlabBlock, type BrickStairsBlock, type BrownCandleBlock, type BrownCandleCakeBlock, type BrownGlazedTerracottaBlock, type BrownMushroomBlockBlock, type BubbleColumnBlock, type BubbleCoralBlock, type BubbleCoralBlockBlock, type BubbleCoralFanBlock, type BubbleCoralWallFanBlock, type CactusBlock, type CakeBlock, type CalibratedSculkSensorBlock, type CampfireBlock, type CandleBlock, type CandleCakeBlock, CardinalDirection, type CarrotsBlock, type CarvedPumpkinBlock, type CauldronBlock, type CauldronLiquid, type CaveVinesBlock, type CaveVinesBodyWithBerriesBlock, type CaveVinesHeadWithBerriesBlock, type ChainBlock, type ChainCommandBlockBlock, type ChemistryTableBlock, type ChemistryTableType, type CherryButtonBlock, type CherryDoorBlock, type CherryDoubleSlabBlock, type CherryFenceGateBlock, type CherryHangingSignBlock, type CherryLeavesBlock, type CherryLogBlock, type CherryPressurePlateBlock, type CherrySaplingBlock, type CherrySlabBlock, type CherryStairsBlock, type CherryStandingSignBlock, type CherryTrapdoorBlock, type CherryWallSignBlock, type CherryWoodBlock, type ChestBlock, type ChippedAnvilBlock, type ChiselType, type ChiseledBookshelfBlock, type ChiseledQuartzBlockBlock, type ChiseledRedSandstoneBlock, type ChiseledSandstoneBlock, type ChiseledStoneBricksBlock, type ChorusFlowerBlock, Chunk, ChunkReadySignal, ClearEnum, ClientSystemInfo, type CobbledDeepslateDoubleSlabBlock, type CobbledDeepslateSlabBlock, type CobbledDeepslateStairsBlock, type CobbledDeepslateWallBlock, type CobblestoneDoubleSlabBlock, type CobblestoneSlabBlock, type CobblestoneWallBlock, type CocoaBlock, type ColoredTorchBpBlock, type ColoredTorchRgBlock, Command, CommandArgumentPointer, type CommandArguments, type CommandBlockBlock, type CommandCallback, type CommandContext, CommandExecutionState, type CommandOverload, CommandPalette, CommandRegistry, type CommandRegistryCallback, type CommandResponse, CommonCommands, type ComposterBlock, ConsoleInterface, Container, type CopperBulbBlock, type CopperDoorBlock, type CopperTrapdoorBlock, type CoralColor, type CornflowerBlock, type CrackedState, type CrackedStoneBricksBlock, type CrafterBlock, type CraftingRecipeIngredient, CreateContentGroup, CreativeItemDescriptor, type CrimsonButtonBlock, type CrimsonDoorBlock, type CrimsonDoubleSlabBlock, type CrimsonFenceGateBlock, type CrimsonHangingSignBlock, type CrimsonHyphaeBlock, type CrimsonPressurePlateBlock, type CrimsonSlabBlock, type CrimsonStairsBlock, type CrimsonStandingSignBlock, type CrimsonStemBlock, type CrimsonTrapdoorBlock, type CrimsonWallSignBlock, CustomBiomeType, type CustomBlockProperties, CustomBlockType, CustomEntityType, CustomEnum, CustomItemType, type CutCopperSlabBlock, type CutCopperStairsBlock, type CutRedSandstoneBlock, type CutRedSandstoneDoubleSlabBlock, type CutRedSandstoneSlabBlock, type CutSandstoneBlock, type CutSandstoneDoubleSlabBlock, type CutSandstoneSlabBlock, type CyanCandleBlock, type CyanCandleCakeBlock, type CyanGlazedTerracottaBlock, type Damage, type DamagedAnvilBlock, type DarkOakButtonBlock, type DarkOakDoorBlock, type DarkOakDoubleSlabBlock, type DarkOakFenceGateBlock, type DarkOakHangingSignBlock, type DarkOakLeavesBlock, type DarkOakLogBlock, type DarkOakPressurePlateBlock, type DarkOakSaplingBlock, type DarkOakSlabBlock, type DarkOakStairsBlock, type DarkOakTrapdoorBlock, type DarkOakWoodBlock, type DarkPrismarineBlock, type DarkPrismarineDoubleSlabBlock, type DarkPrismarineSlabBlock, type DarkPrismarineStairsBlock, type DarkoakStandingSignBlock, type DarkoakWallSignBlock, type DaylightDetectorBlock, type DaylightDetectorInvertedBlock, type DeadBrainCoralBlock, type DeadBrainCoralBlockBlock, type DeadBrainCoralFanBlock, type DeadBrainCoralWallFanBlock, type DeadBubbleCoralBlock, type DeadBubbleCoralBlockBlock, type DeadBubbleCoralFanBlock, type DeadBubbleCoralWallFanBlock, type DeadFireCoralBlock, type DeadFireCoralBlockBlock, type DeadFireCoralFanBlock, type DeadFireCoralWallFanBlock, type DeadHornCoralBlock, type DeadHornCoralBlockBlock, type DeadHornCoralFanBlock, type DeadHornCoralWallFanBlock, type DeadTubeCoralBlock, type DeadTubeCoralBlockBlock, type DeadTubeCoralFanBlock, type DeadTubeCoralWallFanBlock, type DecoratedPotBlock, type DeepslateBlock, type DeepslateBrickDoubleSlabBlock, type DeepslateBrickSlabBlock, type DeepslateBrickStairsBlock, type DeepslateBrickWallBlock, type DeepslateTileDoubleSlabBlock, type DeepslateTileSlabBlock, type DeepslateTileStairsBlock, type DeepslateTileWallBlock, DefaultDimensionProperties, DefaultItemStackOptions, DefaultResourcesProperties, DefaultWorldProviderProperties, type DeprecatedAnvilBlock, type DetectorRailBlock, DialogueForm, type DialogueFormButton, type DialogueFormProperties, Dimension, type DimensionProperties, type DioriteDoubleSlabBlock, type DioriteSlabBlock, type DioriteStairsBlock, type DispenserBlock, type DoubleCutCopperSlabBlock, type DoublePlantType, type DripstoneThickness, type DropperBlock, EffectAddSignal, EffectEnum, EffectRemoveSignal, EnchantmentsEnum, type EndBrickStairsBlock, type EndPortalFrameBlock, type EndRodBlock, type EndStoneBrickDoubleSlabBlock, type EndStoneBrickSlabBlock, type EnderChestBlock, Entity, EntityActorFlags, EntityAirSupplyTrait, EntityAttributeTrait, EntityAttributeUpdateSignal, EntityBooleanProperty, EntityCollisionTrait, EntityContainer, type EntityDeathOptions, type EntityDespawnOptions, EntityDespawnedSignal, EntityDiedSignal, EntityDimensionChangeSignal, EntityDropItemSignal, type EntityEffectOptions, EntityEffectsTrait, EntityEnum, EntityEnumProperty, EntityEquipmentTrait, type EntityFallOnBlockTraitEvent, EntityFlagUpdateSignal, EntityFloatProperty, EntityGravityTrait, EntityHealthChangedSignal, EntityHealthTrait, EntityHitSignal, EntityHurtSignal, EntityIdentifier, EntityIntProperty, EntityInteractMethod, EntityInventoryTrait, type EntityInventoryTraitOptions, EntityInvisibilityTrait, EntityItemPickupSignal, EntityItemStackTrait, type EntityItemStackTraitOptions, EntityLevelStorage, EntityLookAtPlayerTrait, EntityMetadataUpdateSignal, EntityMovementTrait, EntityNameableTrait, type EntityNpcDialogueProperty, EntityNpcTrait, EntityPalette, EntityPhysicsTrait, type EntityProperties, EntityProperty, type EntityQueryOptions, type EntityRenderedOptions, EntityRideableTrait, EntityRidingTrait, EntitySharedProperties, type EntitySpawnOptions, EntitySpawnedSignal, type EntityTeleportOptions, EntityTrait, EntityTraitEnum, EntityTraits, EntityType, EntityXpOrbTrait, Enum, EventSignal, type ExposedCopperBulbBlock, type ExposedCopperDoorBlock, type ExposedCopperTrapdoorBlock, type ExposedCutCopperSlabBlock, type ExposedCutCopperStairsBlock, type ExposedDoubleCutCopperSlabBlock, FacingDirection, type FarmlandBlock, type FenceGateBlock, type FernBlock, type FileMap, FileSystemProvider, type FireBlock, type FireCoralBlock, type FireCoralBlockBlock, type FireCoralFanBlock, type FireCoralWallFanBlock, type FlowerPotBlock, type FlowerType, type FlowingLavaBlock, type FlowingWaterBlock, Form, type FormParticipant, type FormResult, type FrameBlock, type FrostedIceBlock, type FurnaceBlock, GamemodeEnum, type GlowFrameBlock, type GlowLichenBlock, type GoldenRailBlock, type GraniteDoubleSlabBlock, type GraniteSlabBlock, type GraniteStairsBlock, type GrayCandleBlock, type GrayCandleCakeBlock, type GrayGlazedTerracottaBlock, type GreenCandleBlock, type GreenCandleCakeBlock, type GreenGlazedTerracottaBlock, type GrindstoneBlock, Handlers, type HayBlockBlock, type HeavyWeightedPressurePlateBlock, type HopperBlock, type HornCoralBlock, type HornCoralBlockBlock, type HornCoralFanBlock, type HornCoralWallFanBlock, type IPermissionDefinition, type IPermissionGroup, type IPermissionMember, type IPermissions, type InfestedChiseledStoneBricksBlock, type InfestedCobblestoneBlock, type InfestedCrackedStoneBricksBlock, type InfestedDeepslateBlock, type InfestedMossyStoneBricksBlock, type InfestedStoneBlock, type InfestedStoneBricksBlock, IntegerEnum, InternalProvider, type IronDoorBlock, type IronTrapdoorBlock, ItemCategory, ItemDrop, ItemEnum, ItemGroup, ItemIdentifier, ItemLockMode, ItemPalette, ItemStack, ItemStackBundleTrait, ItemStackDamagedSignal, ItemStackDisplayTrait, type ItemStackDisplayTraitOptions, type ItemStackDroppedOptions, ItemStackDurabilityTrait, ItemStackEnchantableTrait, ItemStackFoodTrait, type ItemStackHotbarDetails, ItemStackInstanceStorage, ItemStackKeepOnDieTrait, ItemStackLevelStorage, ItemStackLiquidContainerTrait, ItemStackLockTrait, type ItemStackOptions, ItemStackShooterTrait, ItemStackSignTrait, ItemStackSpawnEggTrait, ItemStackTrait, ItemStackTraits, type ItemStackUseOnBlockOptions, type ItemStackUseOnEntityOptions, type ItemStackUseOptions, ItemStackWeaponTrait, ItemStackWearableTrait, type ItemStackWearableTraitProperties, ItemToolType, ItemType, ItemTypeBlockPlacerComponent, type ItemTypeBlockPlacerComponentOptions, ItemTypeCanDestroyInCreativeComponent, ItemTypeComponent, ItemTypeComponentCollection, ItemTypeComponents, ItemTypeCooldownComponent, type ItemTypeCooldownComponentOptions, ItemTypeDamageComponent, ItemTypeDiggerComponent, type ItemTypeDiggerComponentOptions, ItemTypeDisplayNameComponent, ItemTypeDurabilityComponent, type ItemTypeDurabilityComponentOptions, type ItemTypeDurabilityDamageChance, ItemTypeFoodComponent, type ItemTypeFoodComponentOptions, type ItemTypeFoodEffectOptions, ItemTypeHandEquippedComponent, ItemTypeIconComponent, type ItemTypeIconComponentOptions, ItemTypeItemPropertiesComponent, ItemTypeMaxStackComponent, type ItemTypeOptions, ItemTypeToolTier, ItemTypeUseAnimationComponent, ItemTypeUseModifiersComponent, type ItemTypeUseModifiersComponentOptions, ItemTypeWearableComponent, type ItemTypeWearableComponentOptions, type ItemWeaponComponent, ItemWearableTier, type JSONLikeArray, type JSONLikeObject, type JSONLikeValue, type JigsawBlock, JsonObjectEnum, type JungleButtonBlock, type JungleDoorBlock, type JungleDoubleSlabBlock, type JungleFenceGateBlock, type JungleHangingSignBlock, type JungleLeavesBlock, type JungleLogBlock, type JunglePressurePlateBlock, type JungleSaplingBlock, type JungleSlabBlock, type JungleStairsBlock, type JungleStandingSignBlock, type JungleTrapdoorBlock, type JungleWallSignBlock, type JungleWoodBlock, type KelpBlock, type LadderBlock, type LanternBlock, type LargeAmethystBudBlock, type LargeFernBlock, type LavaBlock, type LecternBlock, LevelDBKeyBuilder, LevelDBProvider, type LeverBlock, type LeverDirection, type LightBlock0Block, type LightBlock10Block, type LightBlock11Block, type LightBlock12Block, type LightBlock13Block, type LightBlock14Block, type LightBlock15Block, type LightBlock1Block, type LightBlock2Block, type LightBlock3Block, type LightBlock4Block, type LightBlock5Block, type LightBlock6Block, type LightBlock7Block, type LightBlock8Block, type LightBlock9Block, type LightBlueCandleBlock, type LightBlueCandleCakeBlock, type LightBlueGlazedTerracottaBlock, type LightGrayCandleBlock, type LightGrayCandleCakeBlock, type LightWeightedPressurePlateBlock, type LightningRodBlock, type LilacBlock, type LilyOfTheValleyBlock, type LimeCandleBlock, type LimeCandleCakeBlock, type LimeGlazedTerracottaBlock, type LitBlastFurnaceBlock, type LitFurnaceBlock, type LitPumpkinBlock, type LitSmokerBlock, type LoomBlock, type LootEntry, LootPool, LootTable, type MagentaCandleBlock, type MagentaCandleCakeBlock, type MagentaGlazedTerracottaBlock, type MangroveButtonBlock, type MangroveDoorBlock, type MangroveDoubleSlabBlock, type MangroveFenceGateBlock, type MangroveHangingSignBlock, type MangroveLeavesBlock, type MangroveLogBlock, type MangrovePressurePlateBlock, type MangrovePropaguleBlock, type MangroveSlabBlock, type MangroveStairsBlock, type MangroveStandingSignBlock, type MangroveTrapdoorBlock, type MangroveWallSignBlock, type MangroveWoodBlock, type MaterialInstanceOptions, type MediumAmethystBudBlock, type MelonStemBlock, MessageForm, type MinecraftblockFace, type MinecraftcardinalDirection, type MinecraftfacingDirection, type MinecraftverticalHalf, ModalForm, type MonsterEggStoneType, type MossyCobblestoneDoubleSlabBlock, type MossyCobblestoneSlabBlock, type MossyCobblestoneStairsBlock, type MossyStoneBrickDoubleSlabBlock, type MossyStoneBrickSlabBlock, type MossyStoneBrickStairsBlock, type MossyStoneBricksBlock, type MudBrickDoubleSlabBlock, type MudBrickSlabBlock, type MudBrickStairsBlock, type MudBrickWallBlock, type MuddyMangroveRootsBlock, type NetherBrickDoubleSlabBlock, type NetherBrickSlabBlock, type NetherBrickStairsBlock, type NetherWartBlock, Network, NetworkBound, type NetworkEvents, NetworkHandler, type NetworkPacketEvent, type NetworkProperties, type NewLeafType, type NewLogType, Node, NodeEvaluator, type NormalStoneDoubleSlabBlock, type NormalStoneSlabBlock, type NormalStoneStairsBlock, type OakDoubleSlabBlock, type OakHangingSignBlock, type OakLeavesBlock, type OakLogBlock, type OakSaplingBlock, type OakSlabBlock, type OakStairsBlock, type OakWoodBlock, type ObserverBlock, type OchreFroglightBlock, OperatorCommands, type OrangeCandleBlock, type OrangeCandleCakeBlock, type OrangeGlazedTerracottaBlock, type OrangeTulipBlock, type Orientation, type OxeyeDaisyBlock, type OxidizedCopperBulbBlock, type OxidizedCopperDoorBlock, type OxidizedCopperTrapdoorBlock, type OxidizedCutCopperSlabBlock, type OxidizedCutCopperStairsBlock, type OxidizedDoubleCutCopperSlabBlock, type PearlescentFroglightBlock, type PeonyBlock, PermissionGroup, PermissionMember, PermissionsEnum, type PetrifiedOakDoubleSlabBlock, type PetrifiedOakSlabBlock, type PillarAxis, type PinkCandleBlock, type PinkCandleCakeBlock, type PinkGlazedTerracottaBlock, type PinkPetalsBlock, type PinkTulipBlock, type PistonArmCollisionBlock, type PistonBlock, type PitcherCropBlock, type PitcherPlantBlock, type PlaySoundOptions, Player, PlayerAbilities, PlayerAbilityUpdateSignal, type PlayerAnimationOptions, PlayerBreakBlockSignal, PlayerCamera, type PlayerCameraFadeOptions, type PlayerCameraFadeTimeOptions, type PlayerCameraFovOptions, PlayerChatSignal, PlayerChunkRenderingTrait, PlayerClosedContainerSignal, PlayerCombatTrait, PlayerCommandExecutorTrait, PlayerContainerInteractionSignal, PlayerCraftRecipeSignal, PlayerCraftingInputTrait, PlayerCraftingOutputTrait, PlayerCursorTrait, PlayerDropExperienceSignal, type PlayerEaseOptions, PlayerEditSignSignal, PlayerEntityRenderingTrait, PlayerGamemodeChangeSignal, PlayerHungerTrait, PlayerInitializedSignal, PlayerInteractWithBlockSignal, PlayerInteractWithEntitySignal, PlayerJoinSignal, PlayerLeaveSignal, PlayerLevelStorage, PlayerLevelingTrait, PlayerListTrait, PlayerOpenedContainerSignal, PlayerPlaceBlockSignal, type PlayerProperties, PlayerSkin, PlayerStartEmotingSignal, PlayerStartUsingItemSignal, PlayerStopEmotingSignal, PlayerStopUsingItemSignal, PlayerTrait, PlayerUseItemOnBlockSignal, PlayerUseItemOnEntitySignal, PlayerUseItemSignal, type PointedDripstoneBlock, type PolishedAndesiteDoubleSlabBlock, type PolishedAndesiteSlabBlock, type PolishedAndesiteStairsBlock, type PolishedBasaltBlock, type PolishedBlackstoneBrickDoubleSlabBlock, type PolishedBlackstoneBrickSlabBlock, type PolishedBlackstoneBrickStairsBlock, type PolishedBlackstoneBrickWallBlock, type PolishedBlackstoneButtonBlock, type PolishedBlackstoneDoubleSlabBlock, type PolishedBlackstonePressurePlateBlock, type PolishedBlackstoneSlabBlock, type PolishedBlackstoneStairsBlock, type PolishedBlackstoneWallBlock, type PolishedDeepslateDoubleSlabBlock, type PolishedDeepslateSlabBlock, type PolishedDeepslateStairsBlock, type PolishedDeepslateWallBlock, type PolishedDioriteDoubleSlabBlock, type PolishedDioriteSlabBlock, type PolishedDioriteStairsBlock, type PolishedGraniteDoubleSlabBlock, type PolishedGraniteSlabBlock, type PolishedGraniteStairsBlock, type PolishedTuffDoubleSlabBlock, type PolishedTuffSlabBlock, type PolishedTuffStairsBlock, type PolishedTuffWallBlock, type PoppyBlock, type PortalAxis, type PortalBlock, PositionEnum, type PotatoesBlock, type PoweredComparatorBlock, type PoweredRepeaterBlock, type PrismarineBlock, type PrismarineBlockType, type PrismarineBrickDoubleSlabBlock, type PrismarineBrickSlabBlock, type PrismarineBricksBlock, type PrismarineBricksStairsBlock, type PrismarineDoubleSlabBlock, type PrismarineSlabBlock, type PrismarineStairsBlock, type PumpkinBlock, type PumpkinStemBlock, type PurpleCandleBlock, type PurpleCandleCakeBlock, type PurpleGlazedTerracottaBlock, type PurpurBlockBlock, type PurpurDoubleSlabBlock, type PurpurSlabBlock, type PurpurStairsBlock, type QuartzBlockBlock, type QuartzDoubleSlabBlock, type QuartzPillarBlock, type QuartzSlabBlock, type QuartzStairsBlock, type RailBlock, type RawMessage, type RawMessageScore, type RawText, Recipe, type RedCandleBlock, type RedCandleCakeBlock, type RedGlazedTerracottaBlock, type RedMushroomBlockBlock, type RedNetherBrickDoubleSlabBlock, type RedNetherBrickSlabBlock, type RedNetherBrickStairsBlock, type RedSandBlock, type RedSandstoneBlock, type RedSandstoneDoubleSlabBlock, type RedSandstoneSlabBlock, type RedSandstoneStairsBlock, type RedTulipBlock, type RedstoneTorchBlock, type RedstoneWireBlock, type ReedsBlock, type RepeatingCommandBlockBlock, type ResourceManifest, ResourcePack, type ResourcePackEntry, type ResourcePacksProperties, Resources, type ResourcesProperties, type RespawnAnchorBlock, RideableSeat, type RideableSeatOptions, type RoseBushBlock, type SandBlock, type SandStoneType, type SandType, type SandstoneBlock, type SandstoneDoubleSlabBlock, type SandstoneSlabBlock, type SandstoneStairsBlock, type SaplingType, type ScaffoldingBlock, Scoreboard, ScoreboardIdentity, ScoreboardObjective, type ScoreboardObjectiveDisplayOptions, ScreenDisplay, type SculkCatalystBlock, type SculkSensorBlock, type SculkShriekerBlock, type SculkVeinBlock, type SeaGrassType, type SeaPickleBlock, type SeagrassBlock, Serenity, type SerenityProperties, ServerEvent, type ServerEvents, type ServerProperties, ServerState, type SessionPacketEvent, ShapedCraftingRecipe, ShapelessCraftingRecipe, type ShortGrassBlock, type SilverGlazedTerracottaBlock, type SkullBlock, type SmallAmethystBudBlock, type SmallDripleafBlockBlock, type SmokerBlock, type SmoothQuartzBlock, type SmoothQuartzDoubleSlabBlock, type SmoothQuartzSlabBlock, type SmoothQuartzStairsBlock, type SmoothRedSandstoneBlock, type SmoothRedSandstoneDoubleSlabBlock, type SmoothRedSandstoneSlabBlock, type SmoothRedSandstoneStairsBlock, type SmoothSandstoneBlock, type SmoothSandstoneDoubleSlabBlock, type SmoothSandstoneSlabBlock, type SmoothSandstoneStairsBlock, type SmoothStoneDoubleSlabBlock, type SmoothStoneSlabBlock, type SnifferEggBlock, type SnowLayerBlock, SoftEnum, type SoulCampfireBlock, type SoulFireBlock, type SoulLanternBlock, type SoulTorchBlock, type SpongeBlock, type SpongeType, type SpruceButtonBlock, type SpruceDoorBlock, type SpruceDoubleSlabBlock, type SpruceFenceGateBlock, type SpruceHangingSignBlock, type SpruceLeavesBlock, type SpruceLogBlock, type SprucePressurePlateBlock, type SpruceSaplingBlock, type SpruceSlabBlock, type SpruceStairsBlock, type SpruceStandingSignBlock, type SpruceTrapdoorBlock, type SpruceWallSignBlock, type SpruceWoodBlock, type StandingBannerBlock, type StandingSignBlock, type StickyPistonArmCollisionBlock, type StickyPistonBlock, type StoneBrickDoubleSlabBlock, type StoneBrickSlabBlock, type StoneBrickStairsBlock, type StoneBrickType, type StoneBricksBlock, type StoneButtonBlock, type StonePressurePlateBlock, type StoneSlabType, type StoneSlabType2, type StoneSlabType3, type StoneSlabType4, type StoneStairsBlock, type StonecutterBlockBlock, StringEnum, type StrippedAcaciaLogBlock, type StrippedAcaciaWoodBlock, type StrippedBambooBlockBlock, type StrippedBirchLogBlock, type StrippedBirchWoodBlock, type StrippedCherryLogBlock, type StrippedCherryWoodBlock, type StrippedCrimsonHyphaeBlock, type StrippedCrimsonStemBlock, type StrippedDarkOakLogBlock, type StrippedDarkOakWoodBlock, type StrippedJungleLogBlock, type StrippedJungleWoodBlock, type StrippedMangroveLogBlock, type StrippedMangroveWoodBlock, type StrippedOakLogBlock, type StrippedOakWoodBlock, type StrippedSpruceLogBlock, type StrippedSpruceWoodBlock, type StrippedWarpedHyphaeBlock, type StrippedWarpedStemBlock, Structure, type StructureBlockBlock, type StructureBlockType, type StructureData, StructureOperation, type StructurePlaceOptions, type StructureVoidBlock, type StructureVoidType, SubChunk, type SunflowerBlock, SuperflatGenerator, SuperflatWorker, type SuspiciousGravelBlock, type SuspiciousSandBlock, type SweetBerryBushBlock, TagEnum, type TallGrassBlock, type TallGrassType, TargetEnum, TerrainGenerator, type TerrainGeneratorProperties, TerrainWorker, TickSchedule, TimeOfDay, TimeOpertation, type TitleDisplayOptions, type TntBlock, type TorchBlock, TorchDirection, type TorchFacingDirection, type TorchflowerCropBlock, Trait, TraitActionEnum, type TraitOnTickDetails, type TrapdoorBlock, type TrappedChestBlock, type TrialSpawnerBlock, type TripWireBlock, type TripwireHookBlock, type TubeCoralBlock, type TubeCoralBlockBlock, type TubeCoralFanBlock, type TubeCoralWallFanBlock, type TuffBrickDoubleSlabBlock, type TuffBrickSlabBlock, type TuffBrickStairsBlock, type TuffBrickWallBlock, type TuffDoubleSlabBlock, type TuffSlabBlock, type TuffStairsBlock, type TuffWallBlock, type TurtleEggBlock, type TurtleEggCount, type TwistingVinesBlock, type UnderwaterTorchBlock, type UnlitRedstoneTorchBlock, type UnpoweredComparatorBlock, type UnpoweredRepeaterBlock, ValidEnum, type VaultBlock, type VaultState, type VerdantFroglightBlock, VerticalHalfTrait, type VineBlock, VoidGenerator, type WallBannerBlock, type WallBlockType, type WallConnectionTypeEast, type WallConnectionTypeNorth, type WallConnectionTypeSouth, type WallConnectionTypeWest, type WallSignBlock, type WarpedButtonBlock, type WarpedDoorBlock, type WarpedDoubleSlabBlock, type WarpedFenceGateBlock, type WarpedHangingSignBlock, type WarpedHyphaeBlock, type WarpedPressurePlateBlock, type WarpedSlabBlock, type WarpedStairsBlock, type WarpedStandingSignBlock, type WarpedStemBlock, type WarpedTrapdoorBlock, type WarpedWallSignBlock, type WaterBlock, type WaxedCopperBulbBlock, type WaxedCopperDoorBlock, type WaxedCopperTrapdoorBlock, type WaxedCutCopperSlabBlock, type WaxedCutCopperStairsBlock, type WaxedDoubleCutCopperSlabBlock, type WaxedExposedCopperBulbBlock, type WaxedExposedCopperDoorBlock, type WaxedExposedCopperTrapdoorBlock, type WaxedExposedCutCopperSlabBlock, type WaxedExposedCutCopperStairsBlock, type WaxedExposedDoubleCutCopperSlabBlock, type WaxedOxidizedCopperBulbBlock, type WaxedOxidizedCopperDoorBlock, type WaxedOxidizedCopperTrapdoorBlock, type WaxedOxidizedCutCopperSlabBlock, type WaxedOxidizedCutCopperStairsBlock, type WaxedOxidizedDoubleCutCopperSlabBlock, type WaxedWeatheredCopperBulbBlock, type WaxedWeatheredCopperDoorBlock, type WaxedWeatheredCopperTrapdoorBlock, type WaxedWeatheredCutCopperSlabBlock, type WaxedWeatheredCutCopperStairsBlock, type WaxedWeatheredDoubleCutCopperSlabBlock, type WeatheredCopperBulbBlock, type WeatheredCopperDoorBlock, type WeatheredCopperTrapdoorBlock, type WeatheredCutCopperSlabBlock, type WeatheredCutCopperStairsBlock, type WeatheredDoubleCutCopperSlabBlock, type WeepingVinesBlock, type WheatBlock, type WhiteCandleBlock, type WhiteCandleCakeBlock, type WhiteGlazedTerracottaBlock, type WhiteTulipBlock, type WoodenButtonBlock, type WoodenDoorBlock, type WoodenPressurePlateBlock, Worker, World, WorldEnum, WorldEvent, type WorldEventSignals, WorldInitializeSignal, type WorldProperties, WorldProvider, type WorldProviderProperties, WorldTickSignal, type YellowCandleBlock, type YellowCandleCakeBlock, type YellowGlazedTerracottaBlock };
18913
+ export { AbilityEnum, type AcaciaButtonBlock, type AcaciaDoorBlock, type AcaciaDoubleSlabBlock, type AcaciaFenceGateBlock, type AcaciaHangingSignBlock, type AcaciaLeavesBlock, type AcaciaLogBlock, type AcaciaPressurePlateBlock, type AcaciaSaplingBlock, type AcaciaSlabBlock, type AcaciaStairsBlock, type AcaciaStandingSignBlock, type AcaciaTrapdoorBlock, type AcaciaWallSignBlock, type AcaciaWoodBlock, ActionForm, type ActionFormElement, type ActionFormImage, type ActivatorRailBlock, type AlliumBlock, type AmethystClusterBlock, type AndesiteDoubleSlabBlock, type AndesiteSlabBlock, type AndesiteStairsBlock, type AnvilBlock, Astar, type Attachment, type AzaleaLeavesBlock, type AzaleaLeavesFloweredBlock, type AzureBluetBlock, type BambooBlock, type BambooBlockBlock, type BambooButtonBlock, type BambooDoorBlock, type BambooDoubleSlabBlock, type BambooFenceGateBlock, type BambooHangingSignBlock, type BambooLeafSize, type BambooMosaicDoubleSlabBlock, type BambooMosaicSlabBlock, type BambooMosaicStairsBlock, type BambooPressurePlateBlock, type BambooSaplingBlock, type BambooSlabBlock, type BambooStairsBlock, type BambooStalkThickness, type BambooStandingSignBlock, type BambooTrapdoorBlock, type BambooWallSignBlock, type BarrelBlock, type BasaltBlock, type BedBlock, type BedrockBlock, type BeeNestBlock, type BeehiveBlock, type BeetrootBlock, type BellBlock, type BigDripleafBlock, type BigDripleafTilt, BinaryHeap, type BinaryItem, BiomePalette, BiomeStorage, BiomeType, type BirchButtonBlock, type BirchDoorBlock, type BirchDoubleSlabBlock, type BirchFenceGateBlock, type BirchHangingSignBlock, type BirchLeavesBlock, type BirchLogBlock, type BirchPressurePlateBlock, type BirchSaplingBlock, type BirchSlabBlock, type BirchStairsBlock, type BirchStandingSignBlock, type BirchTrapdoorBlock, type BirchWallSignBlock, type BirchWoodBlock, type BlackCandleBlock, type BlackCandleCakeBlock, type BlackGlazedTerracottaBlock, type BlackstoneDoubleSlabBlock, type BlackstoneSlabBlock, type BlackstoneStairsBlock, type BlackstoneWallBlock, type BlastFurnaceBlock, Block, BlockBarrelTrait, BlockButtonTrait, BlockCardinalDirectionTrait, BlockChestTrait, BlockCommandBlockTrait, BlockContainer, BlockCraftingTableTrait, type BlockDestroyOptions, BlockDirectionTrait, BlockEnum, BlockFacingDirection, BlockIdentifier, type BlockInteractionOptions, BlockInventoryTrait, type BlockInventoryTraitOptions, BlockLevelStorage, BlockMaterialSound, BlockOpenBitTrait, BlockPalette, BlockPermutation, BlockPermutationUpdateSignal, BlockPillarAxisTrait, type BlockPlacementOptions, type BlockRaycastOptions, BlockShulkerBoxTrait, BlockSignTrait, type BlockState, BlockStorage, BlockStructureTrait, BlockSupportTrait, BlockToolType, BlockTorchDirectionTrait, BlockTrait, BlockTraits, BlockType, BlockTypeCollisionBoxComponent, type BlockTypeCollisionBoxComponentOptions, BlockTypeComponent, BlockTypeCraftingTableComponent, type BlockTypeCraftingTableComponentOptions, type BlockTypeDefinition, BlockTypeDestructableByMiningComponent, BlockTypeDisplayNameComponent, BlockTypeFrictionComponent, BlockTypeGeometryComponent, type BlockTypeGeometryComponentOptions, BlockTypeInteractableComponent, BlockTypeLightDampeningComponent, BlockTypeLightEmissionComponent, BlockTypeMaterialInstancesComponent, type BlockTypeMaterialInstancesComponentOptions, type BlockTypeNbtDefinition, type BlockTypeNbtPermutationDefinition, type BlockTypeNbtStateDefinition, type BlockTypeProperties, BlockTypeSelectionBoxComponent, type BlockTypeSelectionBoxComponentOptions, BlockTypeTransformationComponent, type BlockTypeTransformationComponentOptions, BlockUpdateSignal, BlockUpperTrait, BlockUpsideDownBitTrait, BlockWeirdoDirectionTrait, type BlueCandleBlock, type BlueCandleCakeBlock, type BlueGlazedTerracottaBlock, type BlueOrchidBlock, type BoneBlockBlock, BooleanEnum, type BorderBlockBlock, Bossbar, type BrainCoralBlock, type BrainCoralBlockBlock, type BrainCoralFanBlock, type BrainCoralWallFanBlock, type BrewingStandBlock, type BrickDoubleSlabBlock, type BrickSlabBlock, type BrickStairsBlock, type BrownCandleBlock, type BrownCandleCakeBlock, type BrownGlazedTerracottaBlock, type BrownMushroomBlockBlock, type BubbleColumnBlock, type BubbleCoralBlock, type BubbleCoralBlockBlock, type BubbleCoralFanBlock, type BubbleCoralWallFanBlock, type CactusBlock, type CakeBlock, type CalibratedSculkSensorBlock, type CampfireBlock, type CandleBlock, type CandleCakeBlock, CardinalDirection, type CarrotsBlock, type CarvedPumpkinBlock, type CauldronBlock, type CauldronLiquid, type CaveVinesBlock, type CaveVinesBodyWithBerriesBlock, type CaveVinesHeadWithBerriesBlock, type ChainBlock, type ChainCommandBlockBlock, type ChemistryTableBlock, type ChemistryTableType, type CherryButtonBlock, type CherryDoorBlock, type CherryDoubleSlabBlock, type CherryFenceGateBlock, type CherryHangingSignBlock, type CherryLeavesBlock, type CherryLogBlock, type CherryPressurePlateBlock, type CherrySaplingBlock, type CherrySlabBlock, type CherryStairsBlock, type CherryStandingSignBlock, type CherryTrapdoorBlock, type CherryWallSignBlock, type CherryWoodBlock, type ChestBlock, type ChippedAnvilBlock, type ChiselType, type ChiseledBookshelfBlock, type ChiseledQuartzBlockBlock, type ChiseledRedSandstoneBlock, type ChiseledSandstoneBlock, type ChiseledStoneBricksBlock, type ChorusFlowerBlock, Chunk, ChunkReadySignal, ClearEnum, ClientSystemInfo, type CobbledDeepslateDoubleSlabBlock, type CobbledDeepslateSlabBlock, type CobbledDeepslateStairsBlock, type CobbledDeepslateWallBlock, type CobblestoneDoubleSlabBlock, type CobblestoneSlabBlock, type CobblestoneWallBlock, type CocoaBlock, type ColoredTorchBpBlock, type ColoredTorchRgBlock, Command, CommandArgumentPointer, type CommandArguments, type CommandBlockBlock, type CommandCallback, type CommandContext, CommandExecutionState, type CommandOverload, CommandPalette, CommandRegistry, type CommandRegistryCallback, type CommandResponse, CommonCommands, type ComposterBlock, ConsoleInterface, Container, type CopperBulbBlock, type CopperDoorBlock, type CopperTrapdoorBlock, type CoralColor, type CornflowerBlock, type CrackedState, type CrackedStoneBricksBlock, type CrafterBlock, type CraftingRecipeIngredient, CreateContentGroup, CreativeItemDescriptor, type CrimsonButtonBlock, type CrimsonDoorBlock, type CrimsonDoubleSlabBlock, type CrimsonFenceGateBlock, type CrimsonHangingSignBlock, type CrimsonHyphaeBlock, type CrimsonPressurePlateBlock, type CrimsonSlabBlock, type CrimsonStairsBlock, type CrimsonStandingSignBlock, type CrimsonStemBlock, type CrimsonTrapdoorBlock, type CrimsonWallSignBlock, CustomBiomeType, type CustomBlockProperties, CustomBlockType, CustomEntityType, CustomEnum, CustomItemType, type CutCopperSlabBlock, type CutCopperStairsBlock, type CutRedSandstoneBlock, type CutRedSandstoneDoubleSlabBlock, type CutRedSandstoneSlabBlock, type CutSandstoneBlock, type CutSandstoneDoubleSlabBlock, type CutSandstoneSlabBlock, type CyanCandleBlock, type CyanCandleCakeBlock, type CyanGlazedTerracottaBlock, type Damage, type DamagedAnvilBlock, type DarkOakButtonBlock, type DarkOakDoorBlock, type DarkOakDoubleSlabBlock, type DarkOakFenceGateBlock, type DarkOakHangingSignBlock, type DarkOakLeavesBlock, type DarkOakLogBlock, type DarkOakPressurePlateBlock, type DarkOakSaplingBlock, type DarkOakSlabBlock, type DarkOakStairsBlock, type DarkOakTrapdoorBlock, type DarkOakWoodBlock, type DarkPrismarineBlock, type DarkPrismarineDoubleSlabBlock, type DarkPrismarineSlabBlock, type DarkPrismarineStairsBlock, type DarkoakStandingSignBlock, type DarkoakWallSignBlock, type DaylightDetectorBlock, type DaylightDetectorInvertedBlock, type DeadBrainCoralBlock, type DeadBrainCoralBlockBlock, type DeadBrainCoralFanBlock, type DeadBrainCoralWallFanBlock, type DeadBubbleCoralBlock, type DeadBubbleCoralBlockBlock, type DeadBubbleCoralFanBlock, type DeadBubbleCoralWallFanBlock, type DeadFireCoralBlock, type DeadFireCoralBlockBlock, type DeadFireCoralFanBlock, type DeadFireCoralWallFanBlock, type DeadHornCoralBlock, type DeadHornCoralBlockBlock, type DeadHornCoralFanBlock, type DeadHornCoralWallFanBlock, type DeadTubeCoralBlock, type DeadTubeCoralBlockBlock, type DeadTubeCoralFanBlock, type DeadTubeCoralWallFanBlock, type DecoratedPotBlock, type DeepslateBlock, type DeepslateBrickDoubleSlabBlock, type DeepslateBrickSlabBlock, type DeepslateBrickStairsBlock, type DeepslateBrickWallBlock, type DeepslateTileDoubleSlabBlock, type DeepslateTileSlabBlock, type DeepslateTileStairsBlock, type DeepslateTileWallBlock, DefaultDimensionProperties, DefaultItemStackOptions, DefaultResourcesProperties, DefaultWorldProviderProperties, type DeprecatedAnvilBlock, type DetectorRailBlock, DialogueForm, type DialogueFormButton, type DialogueFormProperties, Dimension, type DimensionProperties, type DioriteDoubleSlabBlock, type DioriteSlabBlock, type DioriteStairsBlock, type DispenserBlock, type DoubleCutCopperSlabBlock, type DoublePlantType, type DripstoneThickness, type DropperBlock, EffectAddSignal, EffectEnum, EffectRemoveSignal, EnchantmentsEnum, type EndBrickStairsBlock, type EndPortalFrameBlock, type EndRodBlock, type EndStoneBrickDoubleSlabBlock, type EndStoneBrickSlabBlock, type EnderChestBlock, Entity, EntityActorFlags, EntityAirSupplyTrait, EntityAttributeTrait, EntityAttributeUpdateSignal, EntityBooleanProperty, EntityCollisionTrait, EntityContainer, type EntityDeathOptions, type EntityDespawnOptions, EntityDespawnedSignal, EntityDiedSignal, EntityDimensionChangeSignal, EntityDropItemSignal, type EntityEffectOptions, EntityEffectsTrait, EntityEnum, EntityEnumProperty, EntityEquipmentTrait, type EntityFallOnBlockTraitEvent, EntityFlagUpdateSignal, EntityFloatProperty, EntityGravityTrait, EntityHealthChangedSignal, EntityHealthTrait, EntityHitSignal, EntityHurtSignal, EntityIdentifier, EntityIntProperty, EntityInteractMethod, EntityInventoryTrait, type EntityInventoryTraitOptions, EntityInvisibilityTrait, EntityItemPickupSignal, EntityItemStackTrait, type EntityItemStackTraitOptions, EntityLevelStorage, EntityLookAtPlayerTrait, EntityMetadataUpdateSignal, EntityMovementTrait, EntityNameableTrait, type EntityNpcDialogueProperty, EntityNpcTrait, EntityPalette, EntityPhysicsTrait, type EntityProperties, EntityProperty, type EntityQueryOptions, type EntityRenderedOptions, EntityRideableTrait, EntityRidingTrait, EntitySharedProperties, type EntitySpawnOptions, EntitySpawnedSignal, type EntityTeleportOptions, EntityTrait, EntityTraitEnum, EntityTraits, EntityType, EntityXpOrbTrait, Enum, EventSignal, type ExposedCopperBulbBlock, type ExposedCopperDoorBlock, type ExposedCopperTrapdoorBlock, type ExposedCutCopperSlabBlock, type ExposedCutCopperStairsBlock, type ExposedDoubleCutCopperSlabBlock, FacingDirection, type FarmlandBlock, type FenceGateBlock, type FernBlock, type FileMap, FileSystemProvider, type FireBlock, type FireCoralBlock, type FireCoralBlockBlock, type FireCoralFanBlock, type FireCoralWallFanBlock, type FlowerPotBlock, type FlowerType, type FlowingLavaBlock, type FlowingWaterBlock, Form, type FormParticipant, type FormResult, type FrameBlock, type FrostedIceBlock, type FurnaceBlock, GamemodeEnum, type GlowFrameBlock, type GlowLichenBlock, type GoldenRailBlock, type GraniteDoubleSlabBlock, type GraniteSlabBlock, type GraniteStairsBlock, type GrayCandleBlock, type GrayCandleCakeBlock, type GrayGlazedTerracottaBlock, type GreenCandleBlock, type GreenCandleCakeBlock, type GreenGlazedTerracottaBlock, type GrindstoneBlock, Handlers, type HayBlockBlock, type HeavyWeightedPressurePlateBlock, type HopperBlock, type HornCoralBlock, type HornCoralBlockBlock, type HornCoralFanBlock, type HornCoralWallFanBlock, type IPermissionDefinition, type IPermissionGroup, type IPermissionMember, type IPermissions, type InfestedChiseledStoneBricksBlock, type InfestedCobblestoneBlock, type InfestedCrackedStoneBricksBlock, type InfestedDeepslateBlock, type InfestedMossyStoneBricksBlock, type InfestedStoneBlock, type InfestedStoneBricksBlock, IntegerEnum, InternalProvider, type IronDoorBlock, type IronTrapdoorBlock, ItemCategory, ItemDrop, ItemEnum, ItemGroup, ItemIdentifier, ItemLockMode, ItemPalette, ItemStack, ItemStackBundleTrait, ItemStackDamagedSignal, ItemStackDisplayTrait, type ItemStackDisplayTraitOptions, type ItemStackDroppedOptions, ItemStackDurabilityTrait, ItemStackEnchantableTrait, ItemStackFoodTrait, type ItemStackHotbarDetails, ItemStackInstanceStorage, ItemStackKeepOnDieTrait, ItemStackLevelStorage, ItemStackLiquidContainerTrait, ItemStackLockTrait, type ItemStackOptions, ItemStackShooterTrait, ItemStackSignTrait, ItemStackSpawnEggTrait, ItemStackTrait, ItemStackTraits, type ItemStackUseOnBlockOptions, type ItemStackUseOnEntityOptions, type ItemStackUseOptions, ItemStackWeaponTrait, ItemStackWearableTrait, type ItemStackWearableTraitProperties, ItemToolType, ItemType, ItemTypeBlockPlacerComponent, type ItemTypeBlockPlacerComponentOptions, ItemTypeCanDestroyInCreativeComponent, ItemTypeComponent, ItemTypeComponentCollection, ItemTypeComponents, ItemTypeCooldownComponent, type ItemTypeCooldownComponentOptions, ItemTypeDamageComponent, ItemTypeDiggerComponent, type ItemTypeDiggerComponentOptions, ItemTypeDisplayNameComponent, ItemTypeDurabilityComponent, type ItemTypeDurabilityComponentOptions, type ItemTypeDurabilityDamageChance, ItemTypeFoodComponent, type ItemTypeFoodComponentOptions, type ItemTypeFoodEffectOptions, ItemTypeHandEquippedComponent, ItemTypeIconComponent, type ItemTypeIconComponentOptions, ItemTypeItemPropertiesComponent, ItemTypeMaxStackComponent, type ItemTypeOptions, ItemTypeToolTier, ItemTypeUseAnimationComponent, ItemTypeUseModifiersComponent, type ItemTypeUseModifiersComponentOptions, ItemTypeWearableComponent, type ItemTypeWearableComponentOptions, type ItemWeaponComponent, ItemWearableTier, type JSONLikeArray, type JSONLikeObject, type JSONLikeValue, type JigsawBlock, JsonObjectEnum, type JungleButtonBlock, type JungleDoorBlock, type JungleDoubleSlabBlock, type JungleFenceGateBlock, type JungleHangingSignBlock, type JungleLeavesBlock, type JungleLogBlock, type JunglePressurePlateBlock, type JungleSaplingBlock, type JungleSlabBlock, type JungleStairsBlock, type JungleStandingSignBlock, type JungleTrapdoorBlock, type JungleWallSignBlock, type JungleWoodBlock, type KelpBlock, type LadderBlock, type LanternBlock, type LargeAmethystBudBlock, type LargeFernBlock, type LavaBlock, type LecternBlock, LevelDBKeyBuilder, LevelDBProvider, type LeverBlock, type LeverDirection, type LightBlock0Block, type LightBlock10Block, type LightBlock11Block, type LightBlock12Block, type LightBlock13Block, type LightBlock14Block, type LightBlock15Block, type LightBlock1Block, type LightBlock2Block, type LightBlock3Block, type LightBlock4Block, type LightBlock5Block, type LightBlock6Block, type LightBlock7Block, type LightBlock8Block, type LightBlock9Block, type LightBlueCandleBlock, type LightBlueCandleCakeBlock, type LightBlueGlazedTerracottaBlock, type LightGrayCandleBlock, type LightGrayCandleCakeBlock, type LightWeightedPressurePlateBlock, type LightningRodBlock, type LilacBlock, type LilyOfTheValleyBlock, type LimeCandleBlock, type LimeCandleCakeBlock, type LimeGlazedTerracottaBlock, type LitBlastFurnaceBlock, type LitFurnaceBlock, type LitPumpkinBlock, type LitSmokerBlock, type LoomBlock, type LootEntry, LootPool, LootTable, type MagentaCandleBlock, type MagentaCandleCakeBlock, type MagentaGlazedTerracottaBlock, type MangroveButtonBlock, type MangroveDoorBlock, type MangroveDoubleSlabBlock, type MangroveFenceGateBlock, type MangroveHangingSignBlock, type MangroveLeavesBlock, type MangroveLogBlock, type MangrovePressurePlateBlock, type MangrovePropaguleBlock, type MangroveSlabBlock, type MangroveStairsBlock, type MangroveStandingSignBlock, type MangroveTrapdoorBlock, type MangroveWallSignBlock, type MangroveWoodBlock, type MaterialInstanceOptions, type MediumAmethystBudBlock, type MelonStemBlock, MessageForm, type MinecraftblockFace, type MinecraftcardinalDirection, type MinecraftfacingDirection, type MinecraftverticalHalf, ModalForm, type MonsterEggStoneType, type MossyCobblestoneDoubleSlabBlock, type MossyCobblestoneSlabBlock, type MossyCobblestoneStairsBlock, type MossyStoneBrickDoubleSlabBlock, type MossyStoneBrickSlabBlock, type MossyStoneBrickStairsBlock, type MossyStoneBricksBlock, type MudBrickDoubleSlabBlock, type MudBrickSlabBlock, type MudBrickStairsBlock, type MudBrickWallBlock, type MuddyMangroveRootsBlock, type NetherBrickDoubleSlabBlock, type NetherBrickSlabBlock, type NetherBrickStairsBlock, type NetherWartBlock, Network, NetworkBound, type NetworkEvents, NetworkHandler, type NetworkPacketEvent, type NetworkProperties, type NewLeafType, type NewLogType, Node, NodeEvaluator, type NormalStoneDoubleSlabBlock, type NormalStoneSlabBlock, type NormalStoneStairsBlock, type OakDoubleSlabBlock, type OakHangingSignBlock, type OakLeavesBlock, type OakLogBlock, type OakSaplingBlock, type OakSlabBlock, type OakStairsBlock, type OakWoodBlock, type ObserverBlock, type OchreFroglightBlock, OperatorCommands, type OrangeCandleBlock, type OrangeCandleCakeBlock, type OrangeGlazedTerracottaBlock, type OrangeTulipBlock, type Orientation, type OxeyeDaisyBlock, type OxidizedCopperBulbBlock, type OxidizedCopperDoorBlock, type OxidizedCopperTrapdoorBlock, type OxidizedCutCopperSlabBlock, type OxidizedCutCopperStairsBlock, type OxidizedDoubleCutCopperSlabBlock, type PearlescentFroglightBlock, type PeonyBlock, PermissionGroup, PermissionMember, PermissionsEnum, type PetrifiedOakDoubleSlabBlock, type PetrifiedOakSlabBlock, type PillarAxis, type PinkCandleBlock, type PinkCandleCakeBlock, type PinkGlazedTerracottaBlock, type PinkPetalsBlock, type PinkTulipBlock, type PistonArmCollisionBlock, type PistonBlock, type PitcherCropBlock, type PitcherPlantBlock, type PlaySoundOptions, Player, PlayerAbilities, PlayerAbilityUpdateSignal, type PlayerAnimationOptions, PlayerBreakBlockSignal, PlayerCamera, type PlayerCameraFadeOptions, type PlayerCameraFadeTimeOptions, type PlayerCameraFovOptions, PlayerChatSignal, PlayerChunkRenderingTrait, PlayerClosedContainerSignal, PlayerCombatTrait, PlayerCommandExecutorTrait, PlayerContainerInteractionSignal, PlayerCraftRecipeSignal, PlayerCraftingInputTrait, PlayerCraftingOutputTrait, PlayerCursorTrait, PlayerDropExperienceSignal, type PlayerEaseOptions, PlayerEditSignSignal, PlayerEntityRenderingTrait, PlayerGamemodeChangeSignal, PlayerHungerTrait, PlayerInitializedSignal, PlayerInteractWithBlockSignal, PlayerInteractWithEntitySignal, PlayerJoinSignal, PlayerLeaveSignal, PlayerLevelStorage, PlayerLevelingTrait, PlayerListTrait, PlayerOpenedContainerSignal, PlayerPlaceBlockSignal, type PlayerProperties, PlayerSkin, PlayerStartEmotingSignal, PlayerStartUsingItemSignal, PlayerStopEmotingSignal, PlayerStopUsingItemSignal, PlayerTrait, PlayerUseItemOnBlockSignal, PlayerUseItemOnEntitySignal, PlayerUseItemSignal, type PointedDripstoneBlock, type PolishedAndesiteDoubleSlabBlock, type PolishedAndesiteSlabBlock, type PolishedAndesiteStairsBlock, type PolishedBasaltBlock, type PolishedBlackstoneBrickDoubleSlabBlock, type PolishedBlackstoneBrickSlabBlock, type PolishedBlackstoneBrickStairsBlock, type PolishedBlackstoneBrickWallBlock, type PolishedBlackstoneButtonBlock, type PolishedBlackstoneDoubleSlabBlock, type PolishedBlackstonePressurePlateBlock, type PolishedBlackstoneSlabBlock, type PolishedBlackstoneStairsBlock, type PolishedBlackstoneWallBlock, type PolishedDeepslateDoubleSlabBlock, type PolishedDeepslateSlabBlock, type PolishedDeepslateStairsBlock, type PolishedDeepslateWallBlock, type PolishedDioriteDoubleSlabBlock, type PolishedDioriteSlabBlock, type PolishedDioriteStairsBlock, type PolishedGraniteDoubleSlabBlock, type PolishedGraniteSlabBlock, type PolishedGraniteStairsBlock, type PolishedTuffDoubleSlabBlock, type PolishedTuffSlabBlock, type PolishedTuffStairsBlock, type PolishedTuffWallBlock, type PoppyBlock, type PortalAxis, type PortalBlock, PositionEnum, type PotatoesBlock, type PoweredComparatorBlock, type PoweredRepeaterBlock, type PrismarineBlock, type PrismarineBlockType, type PrismarineBrickDoubleSlabBlock, type PrismarineBrickSlabBlock, type PrismarineBricksBlock, type PrismarineBricksStairsBlock, type PrismarineDoubleSlabBlock, type PrismarineSlabBlock, type PrismarineStairsBlock, type PumpkinBlock, type PumpkinStemBlock, type PurpleCandleBlock, type PurpleCandleCakeBlock, type PurpleGlazedTerracottaBlock, type PurpurBlockBlock, type PurpurDoubleSlabBlock, type PurpurSlabBlock, type PurpurStairsBlock, type QuartzBlockBlock, type QuartzDoubleSlabBlock, type QuartzPillarBlock, type QuartzSlabBlock, type QuartzStairsBlock, type RailBlock, type RawMessage, type RawMessageScore, type RawText, Recipe, type RedCandleBlock, type RedCandleCakeBlock, type RedGlazedTerracottaBlock, type RedMushroomBlockBlock, type RedNetherBrickDoubleSlabBlock, type RedNetherBrickSlabBlock, type RedNetherBrickStairsBlock, type RedSandBlock, type RedSandstoneBlock, type RedSandstoneDoubleSlabBlock, type RedSandstoneSlabBlock, type RedSandstoneStairsBlock, type RedTulipBlock, type RedstoneTorchBlock, type RedstoneWireBlock, type ReedsBlock, type RepeatingCommandBlockBlock, type ResourceManifest, ResourcePack, type ResourcePackEntry, type ResourcePacksProperties, Resources, type ResourcesProperties, type RespawnAnchorBlock, RideableSeat, type RideableSeatOptions, type RoseBushBlock, type SandBlock, type SandStoneType, type SandType, type SandstoneBlock, type SandstoneDoubleSlabBlock, type SandstoneSlabBlock, type SandstoneStairsBlock, type SaplingType, type ScaffoldingBlock, Scoreboard, ScoreboardIdentity, ScoreboardObjective, type ScoreboardObjectiveDisplayOptions, ScreenDisplay, type SculkCatalystBlock, type SculkSensorBlock, type SculkShriekerBlock, type SculkVeinBlock, type SeaGrassType, type SeaPickleBlock, type SeagrassBlock, Serenity, type SerenityProperties, ServerEvent, type ServerEvents, type ServerProperties, ServerState, type SessionPacketEvent, ShapedCraftingRecipe, ShapelessCraftingRecipe, type ShortGrassBlock, type SilverGlazedTerracottaBlock, type SkullBlock, type SmallAmethystBudBlock, type SmallDripleafBlockBlock, type SmokerBlock, type SmoothQuartzBlock, type SmoothQuartzDoubleSlabBlock, type SmoothQuartzSlabBlock, type SmoothQuartzStairsBlock, type SmoothRedSandstoneBlock, type SmoothRedSandstoneDoubleSlabBlock, type SmoothRedSandstoneSlabBlock, type SmoothRedSandstoneStairsBlock, type SmoothSandstoneBlock, type SmoothSandstoneDoubleSlabBlock, type SmoothSandstoneSlabBlock, type SmoothSandstoneStairsBlock, type SmoothStoneDoubleSlabBlock, type SmoothStoneSlabBlock, type SnifferEggBlock, type SnowLayerBlock, SoftEnum, type SoulCampfireBlock, type SoulFireBlock, type SoulLanternBlock, type SoulTorchBlock, type SpongeBlock, type SpongeType, type SpruceButtonBlock, type SpruceDoorBlock, type SpruceDoubleSlabBlock, type SpruceFenceGateBlock, type SpruceHangingSignBlock, type SpruceLeavesBlock, type SpruceLogBlock, type SprucePressurePlateBlock, type SpruceSaplingBlock, type SpruceSlabBlock, type SpruceStairsBlock, type SpruceStandingSignBlock, type SpruceTrapdoorBlock, type SpruceWallSignBlock, type SpruceWoodBlock, type StandingBannerBlock, type StandingSignBlock, type StickyPistonArmCollisionBlock, type StickyPistonBlock, type StoneBrickDoubleSlabBlock, type StoneBrickSlabBlock, type StoneBrickStairsBlock, type StoneBrickType, type StoneBricksBlock, type StoneButtonBlock, type StonePressurePlateBlock, type StoneSlabType, type StoneSlabType2, type StoneSlabType3, type StoneSlabType4, type StoneStairsBlock, type StonecutterBlockBlock, StringEnum, type StrippedAcaciaLogBlock, type StrippedAcaciaWoodBlock, type StrippedBambooBlockBlock, type StrippedBirchLogBlock, type StrippedBirchWoodBlock, type StrippedCherryLogBlock, type StrippedCherryWoodBlock, type StrippedCrimsonHyphaeBlock, type StrippedCrimsonStemBlock, type StrippedDarkOakLogBlock, type StrippedDarkOakWoodBlock, type StrippedJungleLogBlock, type StrippedJungleWoodBlock, type StrippedMangroveLogBlock, type StrippedMangroveWoodBlock, type StrippedOakLogBlock, type StrippedOakWoodBlock, type StrippedSpruceLogBlock, type StrippedSpruceWoodBlock, type StrippedWarpedHyphaeBlock, type StrippedWarpedStemBlock, Structure, type StructureBlockBlock, type StructureBlockType, type StructureData, StructureOperation, type StructurePlaceOptions, type StructureVoidBlock, type StructureVoidType, SubChunk, SubCommand, type SunflowerBlock, SuperflatGenerator, SuperflatWorker, type SuspiciousGravelBlock, type SuspiciousSandBlock, type SweetBerryBushBlock, TagEnum, type TallGrassBlock, type TallGrassType, TargetEnum, TerrainGenerator, type TerrainGeneratorProperties, TerrainWorker, TickSchedule, TimeOfDay, TimeOpertation, type TitleDisplayOptions, type TntBlock, type TorchBlock, TorchDirection, type TorchFacingDirection, type TorchflowerCropBlock, Trait, TraitActionEnum, type TraitOnTickDetails, type TrapdoorBlock, type TrappedChestBlock, type TrialSpawnerBlock, type TripWireBlock, type TripwireHookBlock, type TubeCoralBlock, type TubeCoralBlockBlock, type TubeCoralFanBlock, type TubeCoralWallFanBlock, type TuffBrickDoubleSlabBlock, type TuffBrickSlabBlock, type TuffBrickStairsBlock, type TuffBrickWallBlock, type TuffDoubleSlabBlock, type TuffSlabBlock, type TuffStairsBlock, type TuffWallBlock, type TurtleEggBlock, type TurtleEggCount, type TwistingVinesBlock, type UnderwaterTorchBlock, type UnlitRedstoneTorchBlock, type UnpoweredComparatorBlock, type UnpoweredRepeaterBlock, ValidEnum, type VaultBlock, type VaultState, type VerdantFroglightBlock, VerticalHalfTrait, type VineBlock, VoidGenerator, type WallBannerBlock, type WallBlockType, type WallConnectionTypeEast, type WallConnectionTypeNorth, type WallConnectionTypeSouth, type WallConnectionTypeWest, type WallSignBlock, type WarpedButtonBlock, type WarpedDoorBlock, type WarpedDoubleSlabBlock, type WarpedFenceGateBlock, type WarpedHangingSignBlock, type WarpedHyphaeBlock, type WarpedPressurePlateBlock, type WarpedSlabBlock, type WarpedStairsBlock, type WarpedStandingSignBlock, type WarpedStemBlock, type WarpedTrapdoorBlock, type WarpedWallSignBlock, type WaterBlock, type WaxedCopperBulbBlock, type WaxedCopperDoorBlock, type WaxedCopperTrapdoorBlock, type WaxedCutCopperSlabBlock, type WaxedCutCopperStairsBlock, type WaxedDoubleCutCopperSlabBlock, type WaxedExposedCopperBulbBlock, type WaxedExposedCopperDoorBlock, type WaxedExposedCopperTrapdoorBlock, type WaxedExposedCutCopperSlabBlock, type WaxedExposedCutCopperStairsBlock, type WaxedExposedDoubleCutCopperSlabBlock, type WaxedOxidizedCopperBulbBlock, type WaxedOxidizedCopperDoorBlock, type WaxedOxidizedCopperTrapdoorBlock, type WaxedOxidizedCutCopperSlabBlock, type WaxedOxidizedCutCopperStairsBlock, type WaxedOxidizedDoubleCutCopperSlabBlock, type WaxedWeatheredCopperBulbBlock, type WaxedWeatheredCopperDoorBlock, type WaxedWeatheredCopperTrapdoorBlock, type WaxedWeatheredCutCopperSlabBlock, type WaxedWeatheredCutCopperStairsBlock, type WaxedWeatheredDoubleCutCopperSlabBlock, type WeatheredCopperBulbBlock, type WeatheredCopperDoorBlock, type WeatheredCopperTrapdoorBlock, type WeatheredCutCopperSlabBlock, type WeatheredCutCopperStairsBlock, type WeatheredDoubleCutCopperSlabBlock, type WeepingVinesBlock, type WheatBlock, type WhiteCandleBlock, type WhiteCandleCakeBlock, type WhiteGlazedTerracottaBlock, type WhiteTulipBlock, type WoodenButtonBlock, type WoodenDoorBlock, type WoodenPressurePlateBlock, Worker, World, WorldEnum, WorldEvent, type WorldEventSignals, WorldInitializeSignal, type WorldProperties, WorldProvider, type WorldProviderProperties, WorldTickSignal, type YellowCandleBlock, type YellowCandleCakeBlock, type YellowGlazedTerracottaBlock };