Home
last modified time | relevance | path

Searched refs:T04 (Results 1 – 25 of 60) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
DkeyofIntersection.js8 type T04<T, U> = keyof (T & U); // keyof T | keyof U
11 type T07 = T04<A, B>; // "a" | "b"
44 declare type T04<T, U> = keyof (T & U);
47 declare type T07 = T04<A, B>;
DkeyofIntersection.symbols27 type T04<T, U> = keyof (T & U); // keyof T | keyof U
28 >T04 : Symbol(T04, Decl(keyofIntersection.ts, 5, 28))
44 type T07 = T04<A, B>; // "a" | "b"
46 >T04 : Symbol(T04, Decl(keyofIntersection.ts, 5, 28))
DneverUnionIntersection.symbols11 type T04 = string & number & never;
12 >T04 : Symbol(T04, Decl(neverUnionIntersection.ts, 2, 35))
DkeyofIntersection.types19 type T04<T, U> = keyof (T & U); // keyof T | keyof U
20 >T04 : keyof T | keyof U
28 type T07 = T04<A, B>; // "a" | "b"
DneverUnionIntersection.types11 type T04 = string & number & never;
12 >T04 : never
DmappedTypes4.types87 type T04 = Boxified<string | number | boolean | null | undefined | void>;
88 >T04 : T04
DmappedTypes4.js32 type T04 = Boxified<string | number | boolean | null | undefined | void>;
114 declare type T04 = Boxified<string | number | boolean | null | undefined | void>;
DrestTupleElements1.types14 type T04 = [...[...string[]]];
15 >T04 : T04
DrestTupleElements1.js6 type T04 = [...[...string[]]];
106 declare type T04 = [...[...string[]]];
DneverUnionIntersection.js5 type T04 = string & number & never;
DrestTupleElements1.symbols14 type T04 = [...[...string[]]];
15 >T04 : Symbol(T04, Decl(restTupleElements1.ts, 3, 25))
DmappedTypes4.symbols104 type T04 = Boxified<string | number | boolean | null | undefined | void>;
105 >T04 : Symbol(T04, Decl(mappedTypes4.ts, 29, 73))
DgenericRestParameters2.js71 type T04 = ConstructorParameters<new (...args: [number, string, ...boolean[]]) => void>;
151 declare type T04 = ConstructorParameters<new (...args: [number, string, ...boolean[]]) => void>;
DmappedTypes6.types14 type T04<T> = { readonly [P in keyof T]: T[P] };
15 >T04 : T04<T>
DmappedTypes6.js7 type T04<T> = { readonly [P in keyof T]: T[P] };
213 declare type T04<T> = {
DgenericRestParameters2.symbols267 type T04 = ConstructorParameters<new (...args: [number, string, ...boolean[]]) => void>;
268 >T04 : Symbol(T04, Decl(genericRestParameters2.ts, 68, 86))
/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofIntersection.ts10 type T04<T, U> = keyof (T & U); // keyof T | keyof U alias
13 type T07 = T04<A, B>; // "a" | "b"
DkeyofAndIndexedAccessErrors.ts15 type T04 = keyof keyof keyof keyof Object; alias
/third_party/typescript/tests/cases/conformance/types/never/
DneverUnionIntersection.ts6 type T04 = string & number & never; alias
/third_party/typescript/tests/cases/conformance/types/tuple/
DrestTupleElements1.ts8 type T04 = [...[...string[]]]; alias
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypes4.ts34 type T04 = Boxified<string | number | boolean | null | undefined | void>; alias
DmappedTypes6.ts9 type T04<T> = { readonly [P in keyof T]: T[P] }; alias
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters2.ts73 type T04 = ConstructorParameters<new (...args: [number, string, ...boolean[]]) => void>; alias
DgenericRestParameters1.ts133 type T04 = ConstructorParameters<new (...args: [number, string, boolean]) => void>;
/third_party/typescript/tests/cases/conformance/types/unknown/
DunknownType1.ts9 type T04 = unknown & string[]; // string[] alias

123