UNPKG

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