Home
last modified time | relevance | path

Searched defs:T00 (Results 1 – 11 of 11) sorted by relevance

/third_party/typescript/tests/cases/conformance/types/tuple/
DrestTupleElements1.ts4 type T00 = [string?]; alias
DvariadicTuples1.ts224 type T00 = First<[number, symbol, string]>; alias
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypes4.ts30 type T00 = Partial<A | B | C>; alias
DmappedTypes6.ts4 type T00<T> = { [P in keyof T]: T[P] }; alias
DmappedTypes1.ts6 type T00 = { [P in "x" | "y"]: number }; alias
DmappedTypesArraysTuples.ts7 type T00 = Boxified<[number, string?, ...boolean[]]>; alias
DmappedTypeErrors.ts22 type T00 = { [P in P]: string }; // Error alias
/third_party/typescript/tests/cases/conformance/types/unknown/
DunknownType1.ts5 type T00 = unknown & null; // null alias
/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofAndIndexedAccessErrors.ts10 type T00 = keyof K0; // Error alias
/third_party/typescript/tests/cases/conformance/types/conditional/
DinferTypes1.ts10 type T00 = Unpacked<string>; // string alias
DconditionalTypes1.ts4 type T00 = Exclude<"a" | "b" | "c" | "d", "a" | "c" | "f">; // "b" | "d" alias