-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc86083
commit 23f00ef
Showing
3 changed files
with
131 additions
and
74 deletions.
There are no files selected for viewing
4 changes: 1 addition & 3 deletions
4
packages/wonder-blocks-announcer/src/__tests__/clear-messages.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export type PolitenessLevel = "polite" | "assertive"; | ||
|
||
export type RegionFactory = { | ||
count: number; | ||
aIndex: number; | ||
pIndex: number; | ||
}; | ||
|
||
export type RegionDef = { | ||
id: string; | ||
levelIndex: number; | ||
level: PolitenessLevel; | ||
element: HTMLElement; | ||
}; | ||
|
||
export type RegionDictionary = Map<string, RegionDef>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters