UNPKG

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