UNPKG

@clickpick/cra-template-vkma

Version:

The base VKMA template for Create React App.

20 lines (16 loc) 420 B
export { }; /* eslint-disable @typescript-eslint/triple-slash-reference */ /// <reference types="node" /> /// <reference types="react" /> /// <reference types="react-dom" /> // fix image declare global { interface HTMLImageElement { importance?: 'high' | 'low' | 'auto'; } } declare module 'react' { interface ImgHTMLAttributes<T> extends HTMLAttributes<T> { importance?: 'high' | 'low' | 'auto'; } }