replugged
    Preparing search index...

    Interface RadioNode

    interface RadioNode {
        getDismissibleBadges?: () => DismissibleBadgeNew[];
        initialize?: () => void;
        setValue:
            | ((value: string | null) => void)
            | ((option: VoidRadioGroupOption) => void)
            | undefined;
        useOptions: () => | BaseRadioGroupOption[]
        | VoidRadioGroupOption[]
        | undefined;
        usePersistentBadge?: () => TrailingBeta;
        usePredicate?: () => boolean;
        useSearchTerms?: () => string[];
        useSubtitle?: () => ReactNode;
        useTitle: (state?: boolean) => string;
        useValue: () => VoidRadioGroupOptionValue | null | undefined;
    }

    Hierarchy (View Summary)

    Index

    Properties

    getDismissibleBadges?: () => DismissibleBadgeNew[]
    initialize?: () => void
    setValue:
        | ((value: string | null) => void)
        | ((option: VoidRadioGroupOption) => void)
        | undefined
    useOptions: () => BaseRadioGroupOption[] | VoidRadioGroupOption[] | undefined
    usePersistentBadge?: () => TrailingBeta
    usePredicate?: () => boolean
    useSearchTerms?: () => string[]
    useSubtitle?: () => ReactNode
    useTitle: (state?: boolean) => string
    useValue: () => VoidRadioGroupOptionValue | null | undefined