UNPKG

@taiga-ui/kit

Version:
13 lines (12 loc) 437 B
import { InjectionToken } from '@angular/core'; import { TuiSizeL } from '@taiga-ui/core/types'; export interface RadioOptions { readonly size: TuiSizeL; readonly appearances: Readonly<{ unchecked: string; checked: string; }>; } /** Default values for the checkbox options. */ export declare const TUI_RADIO_DEFAULT_OPTIONS: RadioOptions; export declare const TUI_RADIO_OPTIONS: InjectionToken<RadioOptions>;