The identifying fields used to match a dropped item against existing ones.

interface ItemMatchKey {
    name: string;
    system: { subType?: unknown };
    type: string;
}

Properties

Properties

name: string

The item name.

system: { subType?: unknown }

The item system data, carrying its subtype.

Type declaration

  • OptionalsubType?: unknown

    Optional subtype string for items that support subtypes.

type: string

The item type.