SerenityJS
    Preparing search index...

    Interface ItemStackDataEntry

    interface ItemStackDataEntry {
        amount: number;
        dynamicProperties: [string, JSONLikeValue][];
        identifier: ItemIdentifier;
        metadata: number;
        nbtProperties: string;
        traits: string[];
        [key: string]: JSONLikeValue;
    }

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    amount: number

    The amount of the item stack.

    dynamicProperties: [string, JSONLikeValue][]

    The dynamic properties attached to the item stack.

    identifier: ItemIdentifier

    The identifier of the item stack.

    metadata: number

    The metadata value of the item stack.

    nbtProperties: string

    The nbt data serialized as a base64 string.

    traits: string[]

    The traits attached to the item stack.