lume/global.d.ts

8 lines
205 B
TypeScript
Raw Normal View History

2023-04-24 02:16:10 +00:00
import { AriaAttributes, DOMAttributes } from 'react';
declare module 'react' {
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
fetchpriority?: 'high' | 'low' | 'auto';
}
}