UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Join the chat at https://gitter.im/primefaces/primeng](https://badges.gitter.im/primefaces/primeng.svg)](https://gitter.im/primefaces/primeng?ut

34 lines (33 loc) 1.04 kB
import { ElementRef, EventEmitter, ChangeDetectorRef } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; export declare const RADIO_VALUE_ACCESSOR: any; export declare class RadioButton implements ControlValueAccessor { private cd; value: any; name: string; disabled: boolean; label: string; tabindex: number; inputId: string; style: any; styleClass: string; labelStyleClass: string; onClick: EventEmitter<any>; inputViewChild: ElementRef; onModelChange: Function; onModelTouched: Function; checked: boolean; focused: boolean; constructor(cd: ChangeDetectorRef); handleClick(event: any, radioButton: any, focus: any): void; select(): void; writeValue(value: any): void; registerOnChange(fn: Function): void; registerOnTouched(fn: Function): void; setDisabledState(val: boolean): void; onFocus(event: any): void; onBlur(event: any): void; onChange(event: any): void; } export declare class RadioButtonModule { }