Trilium Frontend API
    Preparing search index...

    Interface FormRadioProps

    interface FormRadioProps {
        currentValue?: string;
        name: string;
        values: {
            inlineDescription?: ComponentChildren;
            label: ComponentChildren;
            value: string;
        }[];
        onChange(newValue: string): void;
    }
    Index

    Properties

    Methods

    Properties

    currentValue?: string
    name: string
    values: {
        inlineDescription?: ComponentChildren;
        label: ComponentChildren;
        value: string;
    }[]

    Methods

    • Parameters

      • newValue: string

      Returns void