UNPKG

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