live.d.ts 435 B

1234567891011
  1. import { InjectionToken, OnDestroy } from '@angular/core';
  2. export declare type ARIA_LIVE_DELAY_TYPE = number | null;
  3. export declare const ARIA_LIVE_DELAY: InjectionToken<number>;
  4. export declare function ARIA_LIVE_DELAY_FACTORY(): number;
  5. export declare class Live implements OnDestroy {
  6. private _document;
  7. private _delay;
  8. constructor(_document: any, _delay: any);
  9. ngOnDestroy(): void;
  10. say(message: string): void;
  11. }