UNPKG

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