ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
16 lines (15 loc) • 576 B
TypeScript
import { ReplaySubject, Subject } from 'rxjs';
import { NzSafeAny } from 'ng-zorro-antd/core/types';
import * as i0 from "@angular/core";
export declare class NzRadioService {
selected$: ReplaySubject<any>;
touched$: Subject<void>;
disabled$: ReplaySubject<boolean>;
name$: ReplaySubject<string>;
touch(): void;
select(value: NzSafeAny): void;
setDisabled(value: boolean): void;
setName(value: string): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NzRadioService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<NzRadioService>;
}