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 f9fcdc7 commit e19c22cCopy full SHA for e19c22c
packages/react-reconciler/src/ReactInternalTypes.js
@@ -128,7 +128,11 @@ export type Fiber = {
128
// I'll avoid adding an owner field for prod and model that as functions.
129
ref:
130
| null
131
- | (((handle: mixed) => void) & {_stringRef: ?string, ...})
+ | (((handle: mixed) => void) & {
132
+ _stringRef?: string,
133
+ _functionRef?: (handle: mixed) => void,
134
+ ...
135
+ })
136
| RefObject,
137
138
// Input is the data coming into process this fiber. Arguments. Props.
0 commit comments