| 26 | } |
| 27 | |
| 28 | export interface FunctionComponent<P = {}> extends PreactFunctionComponent<P> { |
| 29 | shouldComponentUpdate?(nextProps: Readonly<P>): boolean; |
| 30 | _forwarded?: boolean; |
| 31 | _patchedLifecycles?: true; |
| 32 | } |
| 33 | |
| 34 | export interface VNode<T = any> extends PreactVNode<T> { |
| 35 | $$typeof?: symbol | string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…