Pathfinder 1e for Foundry VTT
    Preparing search index...

    Type Alias ItemSelectorOptions

    type ItemSelectorOptions = {
        actor: ActorPF;
        empty: boolean;
        filterFunc: function;
        items: Item[];
    }
    Index

    Properties

    actor: ActorPF

    Actor from which to get items from.

    empty: boolean

    Allow empty selection (none, as is were).

    true

    filterFunc: function

    Filtering callback function.

    items: Item[]

    Item list to get item from. Used only if actor is undefined.