Exact-by-default codemod for react-native-github

Summary:
We are rolling out exact-by-default syntax to xplat/js.

I had to manually move around some comments to preserve proper placement.

Changelog: [Internal]

Reviewed By: jbrown215

Differential Revision: D18633611

fbshipit-source-id: 48f7468dcc55b1d00985419d035a61c6820b3abe
This commit is contained in:
George Zahariev
2019-11-21 09:42:57 -08:00
committed by Facebook Github Bot
parent 1ad0862363
commit 8553e1acc4
205 changed files with 879 additions and 379 deletions
@@ -22,7 +22,14 @@ import {
import * as React from 'react';
type State = {|
testResults: {[string]: {type: string, value: mixed}},
testResults: {
[string]: {
type: string,
value: mixed,
...
},
...,
},
|};
class SampleTurboModuleExample extends React.Component<{||}, State> {