File size: 311 Bytes
bc20498
 
 
 
 
 
 
1
2
3
4
5
6
7
8
/// <reference types="node" />
/**
 * Creates an announcer object that can be used to make `aria-live` announcements to screen readers.
 */
export declare function getAnnouncer(): {
    announce: (value: string | null | number, kind?: 'assertive' | 'polite', timeout?: number) => NodeJS.Timeout | undefined;
};