UNPKG

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