UNPKG

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