| 312 | // HTML Elements |
| 313 | |
| 314 | interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> { |
| 315 | download?: any; |
| 316 | href?: string; |
| 317 | hreflang?: string; |
| 318 | media?: string; |
| 319 | ping?: string; |
| 320 | referrerpolicy?: HTMLReferrerPolicy; |
| 321 | rel?: string; |
| 322 | target?: string; |
| 323 | type?: string; |
| 324 | |
| 325 | // camelcase |
| 326 | referrerPolicy?: HTMLReferrerPolicy; |
| 327 | } |
| 328 | |
| 329 | interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {} |
| 330 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…