segmented.service.d.ts 848 B

123456789101112131415161718
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { AnimationEvent } from '@angular/animations';
  6. import { OnDestroy } from '@angular/core';
  7. import { ReplaySubject, Subject } from 'rxjs';
  8. import * as i0 from "@angular/core";
  9. export declare class NzSegmentedService implements OnDestroy {
  10. readonly selected$: ReplaySubject<string | number>;
  11. readonly activated$: ReplaySubject<HTMLElement>;
  12. readonly change$: Subject<string | number>;
  13. readonly disabled$: ReplaySubject<boolean>;
  14. readonly animationDone$: Subject<AnimationEvent>;
  15. ngOnDestroy(): void;
  16. static ɵfac: i0.ɵɵFactoryDeclaration<NzSegmentedService, never>;
  17. static ɵprov: i0.ɵɵInjectableDeclaration<NzSegmentedService>;
  18. }