UNPKG

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