mirror of
https://github.com/facebook/react.git
synced 2026-02-22 20:01:52 +00:00
* Update Flow to 0.84 * Fix violations * Use inexact object syntax in files from fbsource * Fix warning extraction to use a modern parser * Codemod inexact objects to new syntax * Tighten types that can be exact * Revert unintentional formatting changes from codemod
30 lines
529 B
JavaScript
30 lines
529 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
export type Source = {|
|
|
fileName: string,
|
|
lineNumber: number,
|
|
|};
|
|
|
|
export type ReactElement = {|
|
|
$$typeof: any,
|
|
type: any,
|
|
key: any,
|
|
ref: any,
|
|
props: any,
|
|
// ReactFiber
|
|
_owner: any,
|
|
|
|
// __DEV__
|
|
_store: {validated: boolean, ...},
|
|
_self: React$Element<any>,
|
|
_shadowChildren: any,
|
|
_source: Source,
|
|
|};
|