interface IToggleOption { /** * The text shown to the user for this option */ label: string, /** * The actual value stored when this option is selected */ value: string }
import {IToggleOption} from 'uxp/components';
Last updated 1 year ago