1
0
Fork 0
blog/src/@types/Image.d.ts

8 lines
180 B
TypeScript
Raw Normal View History

import { GatsbyImageProps } from 'gatsby-plugin-image'
2019-10-28 23:00:55 +01:00
2021-03-06 02:58:10 +01:00
export interface ImageProps extends GatsbyImageProps {
2019-10-28 23:00:55 +01:00
title?: string
original?: { src: string }
2021-03-04 01:20:39 +01:00
className?: string
2019-10-28 23:00:55 +01:00
}