Searched defs:T00 (Results 1 – 11 of 11) sorted by relevance
4 type T00 = [string?]; alias
224 type T00 = First<[number, symbol, string]>; alias
30 type T00 = Partial<A | B | C>; alias
4 type T00<T> = { [P in keyof T]: T[P] }; alias
6 type T00 = { [P in "x" | "y"]: number }; alias
7 type T00 = Boxified<[number, string?, ...boolean[]]>; alias
22 type T00 = { [P in P]: string }; // Error alias
5 type T00 = unknown & null; // null alias
10 type T00 = keyof K0; // Error alias
10 type T00 = Unpacked<string>; // string alias
4 type T00 = Exclude<"a" | "b" | "c" | "d", "a" | "c" | "f">; // "b" | "d" alias