We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3bd363 commit e93410fCopy full SHA for e93410f
packages/react-reconciler/src/ReactInternalTypes.js
@@ -124,7 +124,11 @@ export type Fiber = {
124
// I'll avoid adding an owner field for prod and model that as functions.
125
ref:
126
| null
127
- | (((handle: mixed) => void) & {_stringRef: ?string, ...})
+ | (((handle: mixed) => void) & {
128
+ _stringRef?: string,
129
+ _functionRef?: (handle: mixed) => void,
130
+ ...
131
+ })
132
| RefObject,
133
134
// Input is the data coming into process this fiber. Arguments. Props.
0 commit comments