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

    Type Alias PickerCategory

    type PickerCategory = {
        active: boolean;
        hasChoices: boolean;
        hasVisibleChoices: boolean;
        hidden: boolean;
        items: PickerEntry[];
        key: string;
        label: string;
        validity: { category: boolean; valid: boolean };
    }
    Index

    Properties

    active: boolean

    Is selected?

    hasChoices: boolean
    hasVisibleChoices: boolean
    hidden: boolean
    items: PickerEntry[]

    Entries

    key: string

    Internal ID

    label: string

    Display name

    validity: { category: boolean; valid: boolean }