react-native-macos/types/__typetests__
David 5dd2f2e4b7 fix: Update incorrect `SwitchChangeEvent` type (#34931)
Summary:
I noticed that typescript type for `onChange`  event of `<Switch/>` was incorrect

```tsx
<Switch
  onChange={(event) => {
    // TS
    event.value; // boolean
    event.nativeEvent.value; //TS2339: Property 'value' does not exist on type 'Event'.
    // JS
    console.log(event.nativeEvent); // {value:false,target:87}
    console.log(event.value); // undefined
  }}
/>
```

## Changelog

[General] [Changed] - Typescript: update incorrect `SwitchChangeEvent` type

Pull Request resolved: https://github.com/facebook/react-native/pull/34931

Test Plan: ...

Reviewed By: lunaleaps

Differential Revision: D40240552

Pulled By: skinsshark

fbshipit-source-id: 4d39d547778de4ac4dc6c94471f05bfbe157d0e5
2022-10-12 13:05:35 -07:00
..
animated.tsx Move TypeScript declarations into react-native (#34614) 2022-09-19 12:26:00 -07:00
fabric-component-sample.ts Move TypeScript declarations into react-native (#34614) 2022-09-19 12:26:00 -07:00
globals.tsx Move TypeScript declarations into react-native (#34614) 2022-09-19 12:26:00 -07:00
index.tsx fix: Update incorrect `SwitchChangeEvent` type (#34931) 2022-10-12 13:05:35 -07:00
init-example.tsx Move TypeScript declarations into react-native (#34614) 2022-09-19 12:26:00 -07:00
legacy-properties.tsx Move TypeScript declarations into react-native (#34614) 2022-09-19 12:26:00 -07:00
stylesheet-create.tsx Move TypeScript declarations into react-native (#34614) 2022-09-19 12:26:00 -07:00
stylesheet-flatten.tsx Move TypeScript declarations into react-native (#34614) 2022-09-19 12:26:00 -07:00
turbo-module-sample.ts Move TypeScript declarations into react-native (#34614) 2022-09-19 12:26:00 -07:00