Type Alias LootTableFunctionSignature

LootTableFunctionSignature: (({ rng, looted, looter, context, result, args }: {
    args: Record<string, any>;
    context: any;
    looted: LootTableEntryResult;
    looter: any;
    result: LootTableEntryResults;
    rng: RngInterface;
}) => void)