fix(types): add showScrollIndicator prop to type file (#388)

This commit is contained in:
Jian Wei 2019-03-07 17:14:37 +08:00 committed by Thibault Malbranche
parent 51cced8c65
commit a364d3ed67
1 changed files with 12 additions and 0 deletions

12
typings/index.d.ts vendored
View File

@ -449,6 +449,18 @@ export interface WebViewSharedProps extends ViewProps, IOSWebViewProps, AndroidW
*/
nativeConfig?: WebViewNativeConfig;
/**
* A Boolean value that controls whether the horizontal scroll indicator is visible
* The default value is `true`.
*/
showsHorizontalScrollIndicator?: boolean;
/**
* A Boolean value that controls whether the vertical scroll indicator is visible
* The default value is `true`
*/
showsVerticalScrollIndicator?: boolean;
style?: StyleProp<ViewStyle>;
children?: ReactNode;
}