소스 검색

Merge pull request #194 from rawrmaan/patch-1

Fix index.d.ts import from react-native types
Gaëtan Renaudeau 5 년 전
부모
커밋
9caa300af0
No account linked to committer's email address
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      src/index.d.ts

+ 3
- 3
src/index.d.ts 파일 보기

@@ -10,7 +10,7 @@
10 10
 
11 11
 declare module 'react-native-view-shot' {
12 12
     import { Component, ReactInstance } from 'react'
13
-    import { StyleObj } from 'react-native/Libraries/StyleSheet/StyleSheetTypes'
13
+    import { ViewStyle } from 'react-native'
14 14
 
15 15
     export interface CaptureOptions {
16 16
         /**
@@ -69,9 +69,9 @@ declare module 'react-native-view-shot' {
69 69
          */
70 70
         onCaptureFailure?(error: Error): void;
71 71
         /**
72
-         * style prop as StyleObj
72
+         * style prop as ViewStyle
73 73
          */
74
-        style?: StyleObj;
74
+        style?: ViewStyle;
75 75
     }
76 76
 
77 77
     export default class ViewShot extends Component<ViewShotProperties> {