Add border radius to TypeScript definitions.

This commit is contained in:
Dylan Vann 2018-04-19 02:15:22 -04:00
parent 494ce7d735
commit 440e742216

10
index.d.ts vendored
View File

@ -36,8 +36,14 @@ export type FastImageSource = {
export interface ImageStyle extends FlexStyle, TransformsStyle, ShadowStyleIOS {
backfaceVisibility?: 'visible' | 'hidden'
backgroundColor?: string
borderColor?: string
borderBottomLeftRadius?: number;
borderBottomRightRadius?: number;
backgroundColor?: string;
borderColor?: string;
borderWidth?: number;
borderRadius?: number;
borderTopLeftRadius?: number;
borderTopRightRadius?: number;
overlayColor?: string
tintColor?: string
opacity?: number