UNPKG

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