UNPKG

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