rsnext/test/integration/typescript
Tadao Iseki d196e72a7f
Export ImageProps from Image component (#18576)
This allows to import the type `ImageProps` from `next/image` like `next/link`.

a6660729ea/packages/next/client/link.tsx (L21)

## Usage

```tsx
import Image, { ImageProps } from 'next/image'

const CustomImage: React.FC<ImageProps> = (props) => (
  <Image {...props} unsized />
)
```
2020-11-09 06:20:54 +00:00
..
components Export ImageProps from Image component (#18576) 2020-11-09 06:20:54 +00:00
extension-order Resolve TypeScript Extension in Correct Order (#12014) 2020-04-19 01:12:36 -04:00
pages Export ImageProps from Image component (#18576) 2020-11-09 06:20:54 +00:00
test Add type inference for getStaticProps and getServerSideProps (#11842) 2020-05-27 19:02:22 +00:00
next.config.js Enable scss/sass support (#10571) 2020-02-18 08:35:12 -05:00
tsconfig.json Improve exported router types (#7853) 2019-07-11 13:35:39 -04:00