lume/global.d.ts
2023-04-24 09:16:10 +07:00

8 lines
205 B
TypeScript

import { AriaAttributes, DOMAttributes } from 'react';
declare module 'react' {
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
fetchpriority?: 'high' | 'low' | 'auto';
}
}