소스 검색

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

Jian Wei 5 년 전
부모
커밋
a364d3ed67
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. 12
    0
      typings/index.d.ts

+ 12
- 0
typings/index.d.ts 파일 보기

449
    */
449
    */
450
   nativeConfig?: WebViewNativeConfig;
450
   nativeConfig?: WebViewNativeConfig;
451
 
451
 
452
+  /**
453
+   * A Boolean value that controls whether the horizontal scroll indicator is visible
454
+   * The default value is `true`.
455
+   */
456
+  showsHorizontalScrollIndicator?: boolean;
457
+
458
+  /**
459
+   * A Boolean value that controls whether the vertical scroll indicator is visible
460
+   * The default value is `true`
461
+   */
462
+  showsVerticalScrollIndicator?: boolean;
463
+
452
   style?: StyleProp<ViewStyle>;
464
   style?: StyleProp<ViewStyle>;
453
   children?: ReactNode;
465
   children?: ReactNode;
454
 }
466
 }