Searched refs:T02 (Results 1 – 7 of 7) sorted by relevance
26 type T02<T> = keyof (T & B); // "b" | keyof T alias29 type T05 = T02<A>; // "a" | "b"
23 type T02 = string & never;
25 type T02 = { [P in "a" | "b"]: Item[P]; } alias
76 type T02 = Boxified<A | B[] | C | string> alias
26 type T02 = Required<[number, string?, ...boolean[]]>; alias
439 type T02 = Parameters<(...args: [number, string, ...boolean[]]) => void>;
21 type T02 = Exclude<string | number | (() => void), Function>; // string | number alias