UNPKG

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