remove subtype and also inputmode for numbers

This commit is contained in:
Matt Hill
2023-04-03 08:39:57 -06:00
parent f82d612ec2
commit 4d95025896
6 changed files with 20 additions and 54 deletions

View File

@@ -1,5 +1,5 @@
import { UnionSelectKey, unionSelectKey } from "../config/config-types";
import { InputSpec, matchInputSpec, threads } from "./output";
import { InputSpec, matchInputSpec } from "./output";
export type IfEquals<T, U, Y = unknown, N = never> = (<G>() => G extends T ? 1 : 2) extends <G>() => G extends U ? 1 : 2
? Y