mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
committed by
Facebook Github Bot
parent
1ad0862363
commit
8553e1acc4
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user