ascoders / react-native-image-zoom

react native image pan and zoom
MIT License
639 stars 282 forks source link

fix:ts error #44

Closed beilunyang closed 6 years ago

beilunyang commented 6 years ago

typescript 2.7.0 added a new strictness flag named --strictPropertyInitialization. strictPropertyInitialization will be turned on along with --strict mode flags. the pr fixed some ts error due to strictPropertyInitialization.

// src/image-zoom/image-zoom.component.tsx(46,11): error TS2564: Property 'imagePanResponder' has no initializer and is not definitely assigned in the constructor.
// src/image-zoom/image-zoom.component.tsx(53,11): error TS2564: Property 'lastTouchStartTime' has no initializer and is not definitely assigned in the constructor.
ascoders commented 6 years ago

Deployed 2.0.17. Thanks a lot!