/third_party/typescript/tests/baselines/reference/ |
D | neverUnionIntersection.symbols | 17 type T06 = any & never; 18 >T06 : Symbol(T06, Decl(neverUnionIntersection.ts, 4, 23))
|
D | keyofIntersection.types | 25 type T06 = T03<B>; // "a" | "b" 26 >T06 : T06
|
D | neverUnionIntersection.types | 17 type T06 = any & never; 18 >T06 : never
|
D | keyofIntersection.js | 10 type T06 = T03<B>; // "a" | "b" 46 declare type T06 = T03<B>;
|
D | keyofIntersection.symbols | 39 type T06 = T03<B>; // "a" | "b" 40 >T06 : Symbol(T06, Decl(keyofIntersection.ts, 7, 18))
|
D | neverUnionIntersection.js | 7 type T06 = any & never;
|
D | restTupleElements1.types | 20 type T06 = [string, ...string[]]; 21 >T06 : T06
|
D | restTupleElements1.js | 8 type T06 = [string, ...string[]]; 108 declare type T06 = [string, ...string[]];
|
D | restTupleElements1.symbols | 20 type T06 = [string, ...string[]]; 21 >T06 : Symbol(T06, Decl(restTupleElements1.ts, 5, 35))
|
D | genericRestParameters2.js | 73 type T06 = T05<[number, ...boolean[]]>; 153 declare type T06 = T05<[number, ...boolean[]]>;
|
D | mappedTypes6.types | 20 type T06<T> = { readonly [P in keyof T]+?: T[P] }; 21 >T06 : T06<T>
|
D | mappedTypes6.js | 9 type T06<T> = { readonly [P in keyof T]+?: T[P] }; 219 declare type T06<T> = {
|
D | genericRestParameters2.symbols | 280 type T06 = T05<[number, ...boolean[]]>; 281 >T06 : Symbol(T06, Decl(genericRestParameters2.ts, 70, 72))
|
D | unknownType1.symbols | 22 type T06 = unknown & any; // any 23 >T06 : Symbol(T06, Decl(unknownType1.ts, 7, 29))
|
D | unknownType1.types | 24 type T06 = unknown & any; // any 25 >T06 : any
|
D | genericRestParameters1.js | 133 type T06<T> = ConstructorParameters<new (...args: []) => void>; 338 declare type T06<T> = ConstructorParameters<new (...args: []) => void>;
|
D | unknownType1.js | 10 type T06 = unknown & any; // any
|
/third_party/typescript/tests/cases/conformance/types/never/ |
D | neverUnionIntersection.ts | 8 type T06 = any & never; alias
|
/third_party/typescript/tests/cases/conformance/types/keyof/ |
D | keyofIntersection.ts | 12 type T06 = T03<B>; // "a" | "b" alias
|
D | keyofAndIndexedAccessErrors.ts | 17 type T06 = keyof keyof keyof keyof keyof keyof Object; alias
|
/third_party/typescript/tests/cases/conformance/types/tuple/ |
D | restTupleElements1.ts | 10 type T06 = [string, ...string[]]; alias
|
/third_party/typescript/tests/cases/conformance/types/rest/ |
D | genericRestParameters2.ts | 75 type T06 = T05<[number, ...boolean[]]>; alias
|
D | genericRestParameters1.ts | 135 type T06<T> = ConstructorParameters<new (...args: []) => void>;
|
/third_party/typescript/tests/cases/conformance/types/unknown/ |
D | unknownType1.ts | 11 type T06 = unknown & any; // any alias
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypes6.ts | 11 type T06<T> = { readonly [P in keyof T]+?: T[P] }; alias
|