@ng-ui-libraries/forms
Version:
23 lines (22 loc) • 705 B
TypeScript
import { OnInit, OnDestroy, Injector, EventEmitter } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';
import { NgFormControl } from '../NgFormControl';
export declare class RadioComponent extends NgFormControl<any> implements OnInit, OnDestroy {
injector: Injector;
name: string;
label: string;
parentFormControl: FormControl;
parentFormGroup: FormGroup;
labelPlacement: string;
checkedValue: any;
disabled: boolean;
required: boolean;
identifier: string;
onTouch: EventEmitter<any>;
element: any;
shouldValidate: boolean;
constructor(injector: Injector);
ngOnInit(): void;
onLoad(): void;
check(): void;
}