@larva.io/webcomponents
Version:
Fentrica SmartUnits WebComponents package
15 lines (14 loc) • 435 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
import { Color } from '../../interface';
import { RadioData } from './radio-button-interface';
export declare class RadioButtonContent {
color?: Color;
disabled?: boolean;
value: string;
radios: RadioData[] | string;
selected?: number | string;
selectoption: EventEmitter<number>;
private getRadios;
private getSelected;
render(): any;
}