This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { UnionToIntersection, DeepWritable } from 'ts-essentials'; | |
import { State as RouteState } from 'router5'; | |
import { Switch, createState, createEffect, createMemo } from 'solid-js'; | |
import useRoute, { MatchRoute } from './context'; | |
import { Routes } from './definition'; | |
export type RenderTreeOf<Tree> = | |
Owned<Tree> | RenderNode & | |
UnionToIntersection< | |
Tree extends readonly (infer Node)[] |
OlderNewer