UNPKG

161 BPlain TextView Raw
1/**
2 * @Returns the implicit role for an hr tag.
3 */
4function getImplicitRoleForHr(): string {
5 return 'separator';
6}
7
8export { getImplicitRoleForHr as hr };