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

    Type Alias PickerEntry

    type PickerEntry = {
        active: boolean;
        category: string;
        icon: string;
        key: string;
        label?: string;
        validity: { category: boolean; item: boolean };
    }
    Index

    Properties

    active: boolean

    Selected entry. Only one can be active.

    category: string

    Parent category key

    icon: string

    Unused.

    key: string

    Internal ID

    label?: string

    Display name

    validity: { category: boolean; item: boolean }