| 329 | interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {} |
| 330 | |
| 331 | interface AreaHTMLAttributes<T> extends HTMLAttributes<T> { |
| 332 | alt?: string; |
| 333 | coords?: string; |
| 334 | download?: any; |
| 335 | href?: string; |
| 336 | hreflang?: string; |
| 337 | ping?: string; |
| 338 | referrerpolicy?: HTMLReferrerPolicy; |
| 339 | rel?: string; |
| 340 | shape?: 'rect' | 'circle' | 'poly' | 'default'; |
| 341 | target?: string; |
| 342 | |
| 343 | // camelcase |
| 344 | referrerPolicy?: HTMLReferrerPolicy; |
| 345 | } |
| 346 | |
| 347 | interface BaseHTMLAttributes<T> extends HTMLAttributes<T> { |
| 348 | href?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…