| 5 | export type ElementType = any; |
| 6 | |
| 7 | export interface ReactElementType { |
| 8 | $$typeof: symbol | number; |
| 9 | type: ElementType; |
| 10 | key: Key; |
| 11 | props: Props; |
| 12 | ref: Ref; |
| 13 | __mark: string; |
| 14 | } |
| 15 | |
| 16 | export type Action<State> = State | ((prevState: State) => State); |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected