Loom Engine - v3.1.1
    Preparing search index...

    Interface LootItem<T>

    interface LootItem<T = Record<string, unknown>> {
        id: string;
        tier: string;
        weight?: number;
        tags?: string[];
        payload: T;
    }

    Type Parameters

    • T = Record<string, unknown>
    Index

    Properties

    id: string
    tier: string
    weight?: number
    tags?: string[]
    payload: T