This file contains hidden or 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)[] |
This file contains hidden or 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
| #!/usr/bin/python | |
| # pyright: reportAny=false, reportExplicitAny=false | |
| import argparse | |
| import cProfile | |
| from dataclasses import dataclass | |
| import subprocess | |
| import json | |
| import sys | |
| from typing import Any, Literal, TypedDict, cast |
OlderNewer