Files
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

8 lines
357 B
TypeScript

export type Announcer = ReturnType<typeof getAnnouncer>;
/**
* Creates an announcer object that can be used to make `aria-live` announcements to screen readers.
*/
export declare function getAnnouncer(doc: Document | null): {
announce: (value: string | null | number, kind?: "assertive" | "polite", timeout?: number) => NodeJS.Timeout | undefined;
};