IT
Typescript image import
roselumi
2023. 2. 6. 05:10
https://stackoverflow.com/questions/51100401/typescript-image-import
출처(링크)
Typescript image import
I found a solution here: Webpack & Typescript image import But i am getting error for this: [ts] Types of property 'src' are incompatible. Type 'typeof import("*.png")' is not assignable t...
stackoverflow.com
For react-native
create global.d.ts file on project root folder and just add next lines there
declare module '*.png' {
const value: import('react-native').ImageSourcePropType;
export default value;
}