UNPKG

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