Home
last modified time | relevance | path

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

/third_party/typescript/tests/cases/conformance/types/tuple/
DunionsOfTupleTypes1.ts15 type T22 = T2[2]; // undefined alias
DvariadicTuples1.ts248 type T22 = Last<[string]>; alias
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.8/
DImproved_keyof_with_intersection_types_2.ts58 type T22<T> = keyof (T & myType2); alias
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypesArraysTuples.ts20 type T22 = Required<(string | undefined)[]>; alias
/third_party/typescript/tests/cases/conformance/types/literal/
DtemplateLiteralTypes3.ts43 type T22 = Parts<`*${number}*`>; alias
DtemplateLiteralTypes1.ts69 type T22 = MatchPair<' [1,2]'>; // unknown alias
/third_party/typescript/tests/cases/conformance/types/unknown/
DunknownType1.ts27 type T22<T> = T & unknown; // T alias
/third_party/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/
DinstantiationExpressions.ts28 type T22 = typeof Array<string, number>; // Error alias
/third_party/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/
DvarianceAnnotations.ts100 type T22<in out out T> = T; // Error alias
/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofAndIndexedAccessErrors.ts31 type T22 = Shape[string | boolean]; // Error alias
/third_party/typescript/tests/cases/conformance/types/conditional/
DinferTypes1.ts56 type T22 = ArgumentType<(x?: string) => number>; // string | undefined alias