UNPKG

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