UNPKG

249 BPlain TextView Raw
1/**
2 * @Returns the implicit role for a th tag.
3 * The implicit role is columnheader or rowheader, the func only return columnheader.
4 */
5function getImplicitRoleForTh(): string {
6 return 'columnheader';
7}
8
9export { getImplicitRoleForTh as th };