(src: string | StaticImport)
| 298 | } |
| 299 | |
| 300 | function isStaticImport(src: string | StaticImport): src is StaticImport { |
| 301 | return ( |
| 302 | typeof src === 'object' && |
| 303 | (isStaticRequire(src as StaticImport) || |
| 304 | isStaticImageData(src as StaticImport)) |
| 305 | ) |
| 306 | } |
| 307 | |
| 308 | export type ImageProps = Omit< |
| 309 | JSX.IntrinsicElements['img'], |
no test coverage detected