Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When upgrading to react-native-svg 9.3.1 I got these error messages in Typescript ``` node_modules/react-native-svg/index.d.ts:105:19 - error TS1005: ';' expected. 105 VectorEffectProps { ~ node_modules/react-native-svg/index.d.ts:106:16 - error TS1109: Expression expected. 106 vectorEffect?: "none" | "non-scaling-stroke" | "nonScalingStroke" | "default" | "inherit" | "uri"; ~ Found 2 errors. ``` It seems to me that this was caused by forgetting to add the `interface` keyword before `VectorEffectProps`. This pr fixes that.
- Loading branch information