| 59 | // `h()` doesn't have an explicit state type that contradicts the |
| 60 | // state type it actually uses. |
| 61 | interface TypedH<S> { |
| 62 | <_ extends never, C = unknown, T extends string = string>( |
| 63 | tag: NonEmptyString<T>, |
| 64 | props: CustomPayloads<S, C> & Props<S>, |
| 65 | children?: MaybeVNode<S> | readonly MaybeVNode<S>[] |
| 66 | ): ElementVNode<S> |
| 67 | } |
| 68 | |
| 69 | // --------------------------------------------------------------------------- |
| 70 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…