UNPKG

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