INIT
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
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;
|
||||
};
|
||||
Reference in New Issue
Block a user