radio-group.d.ts 1.3 KB

123456789101112131415161718
  1. import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
  2. import { ValueAccessor } from '@ionic/angular/common';
  3. import type { RadioGroupChangeEventDetail, Components } from '@ionic/core/components';
  4. import * as i0 from "@angular/core";
  5. export declare class IonRadioGroup extends ValueAccessor {
  6. protected z: NgZone;
  7. protected el: HTMLElement;
  8. constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
  9. handleIonChange(el: HTMLIonRadioGroupElement): void;
  10. static ɵfac: i0.ɵɵFactoryDeclaration<IonRadioGroup, never>;
  11. static ɵcmp: i0.ɵɵComponentDeclaration<IonRadioGroup, "ion-radio-group", never, { "allowEmptySelection": { "alias": "allowEmptySelection"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
  12. }
  13. export declare interface IonRadioGroup extends Components.IonRadioGroup {
  14. /**
  15. * Emitted when the value has changed.
  16. */
  17. ionChange: EventEmitter<CustomEvent<RadioGroupChangeEventDetail>>;
  18. }