Searched refs:T01 (Results 1 – 7 of 7) sorted by relevance
22 type T01 = string | never;
25 type T01 = keyof (A & B); // "a" | "b" alias
24 type T01 = { [P in "x" | "y"]: P }; alias
75 type T01 = Readonly<A | B | C | null | undefined>; alias
25 type T01 = Partial<[number, string?, ...boolean[]]>; alias
438 type T01 = Parameters<(x: number, y: string, ...z: boolean[]) => void>;
19 type T01 = Extract<'a' | 'b' | 'c' | 'd', 'a' | 'c' | 'f'>; // 'a' | 'c' alias