mirror of
https://github.com/lumehq/lume.git
synced 2025-03-29 19:21:47 +01:00
8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
import { AriaAttributes, DOMAttributes } from 'react';
|
|
|
|
declare module 'react' {
|
|
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
fetchpriority?: 'high' | 'low' | 'auto';
|
|
}
|
|
}
|