UNPKG

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