Fix SVC for AndroidHorizontalScrollContentView

Summary:
## Failure
```
 LOG  SVC AndroidHorizontalScrollContentView Invalid
 LOG  {
  "missing": {
    "validAttributes": {
      "removeClippedSubviews": true
    }
  },
  "unexpected": {},
  "unequal": []
}
```

Changelog: [Internal]

Reviewed By: yungsters

Differential Revision: D33341774

fbshipit-source-id: 8f287ba00252f8456ad642eaedf38fa3aa2a11ff
This commit is contained in:
Ramanpreet Nara
2022-01-11 14:22:15 -08:00
committed by Facebook GitHub Bot
parent fcf01b8c7a
commit 5bc7b02fc7
@@ -14,6 +14,8 @@ import type {ViewProps} from '../View/ViewPropTypes';
type NativeProps = $ReadOnly<{|
...ViewProps,
removeClippedSubviews?: ?boolean,
|}>;
type NativeType = HostComponent<NativeProps>;