IToggleOption

Definition

interface IToggleOption {
    /**
     * The text shown to the user for this option
     */
    label: string,

    /**
     * The actual value stored when this option is selected
     */
    value: string
}

Usage

import { IToggleOption } from 'uxp/components';

Last updated