Added missing Image clipPath property to type def.

In the specs can be found that this property may be used, and I have verified the working;
https://github.com/react-native-community/react-native-svg#image
This commit is contained in:
Laurens Lamberts
2019-08-26 14:23:20 +02:00
committed by Mikael Sand
parent 3f70055b6c
commit 1dddef3f64
Vendored
+1
View File
@@ -225,6 +225,7 @@ export interface ImageProps extends ResponderProps, CommonMaskProps, ClipProps,
href: ReactNative.ImageProperties['source'],
preserveAspectRatio?: string,
opacity?: NumberProp,
clipPath?: string
}
export const Image: React.ComponentClass<ImageProps>;