( type: (...args: Array<any>) => mixed, )
| 316 | } |
| 317 | |
| 318 | export function isFunctionClassComponent( |
| 319 | type: (...args: Array<any>) => mixed, |
| 320 | ): boolean { |
| 321 | return shouldConstruct(type); |
| 322 | } |
| 323 | |
| 324 | // This is used to create an alternate fiber to do work on. |
| 325 | export function createWorkInProgress(current: Fiber, pendingProps: any): Fiber { |
no test coverage detected