UNPKG

154 BPlain TextView Raw
1/**
2 * @Returns the implicit role for a tr tag.
3 */
4function getImplicitRoleForTr(): string {
5 return 'row';
6}
7
8export { getImplicitRoleForTr as tr };