Files
30-seconds-of-code/node_modules/gatsby-image/withIEPolyfill/index.d.ts
2019-08-20 15:52:05 +02:00

13 lines
364 B
TypeScript

import * as React from "react"
import GatsbyImage, { GatsbyImageProps } from "../index"
interface GatsbyImageWithIEPolyfillProps extends GatsbyImageProps {
objectFit?: `fill` | `contain` | `cover` | `none` | `scale-down`
objectPosition?: string
}
export default class GatsbyImageWithIEPolyfill extends React.Component<
GatsbyImageWithIEPolyfillProps
> {}