ImgHTMLAttributes should has a loading propety
What problem does this feature solve?
export interface ImgHTMLAttributes extends HTMLAttributes { ... loading?: "lazy" | "eager" | "auto"; }
What does the proposed API look like?
export interface ImgHTMLAttributes extends HTMLAttributes { ... loading?: "lazy" | "eager" | "auto"; }