UNPKG

453 BTypeScriptView Raw
1import { InjectionToken, OnDestroy } from '@angular/core';
2export declare type ARIA_LIVE_DELAY_TYPE = number | null;
3export declare const ARIA_LIVE_DELAY: InjectionToken<number | null>;
4export declare function ARIA_LIVE_DELAY_FACTORY(): number;
5export 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}