Bladeren bron

Fix index.d.ts import from react-native types

Arman Dezfuli-Arjomandi 6 jaren geleden
bovenliggende
commit
1f8e326215
No account linked to committer's email address
1 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. 3
    3
      src/index.d.ts

+ 3
- 3
src/index.d.ts Bestand weergeven

10
 
10
 
11
 declare module 'react-native-view-shot' {
11
 declare module 'react-native-view-shot' {
12
     import { Component, ReactInstance } from 'react'
12
     import { Component, ReactInstance } from 'react'
13
-    import { StyleObj } from 'react-native/Libraries/StyleSheet/StyleSheetTypes'
13
+    import { ViewStyle } from 'react-native'
14
 
14
 
15
     export interface CaptureOptions {
15
     export interface CaptureOptions {
16
         /**
16
         /**
69
          */
69
          */
70
         onCaptureFailure?(error: Error): void;
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
     export default class ViewShot extends Component<ViewShotProperties> {
77
     export default class ViewShot extends Component<ViewShotProperties> {