/third_party/typescript/tests/baselines/reference/ |
D | neverUnionIntersection.symbols | 14 type T05 = any | never; 15 >T05 : Symbol(T05, Decl(neverUnionIntersection.ts, 3, 35))
|
D | keyofIntersection.types | 22 type T05 = T02<A>; // "a" | "b" 23 >T05 : T05
|
D | neverUnionIntersection.types | 14 type T05 = any | never; 15 >T05 : any
|
D | genericRestParameters2.js | 72 type T05<T extends any[]> = Parameters<(x: string, ...args: T) => void>; 73 type T06 = T05<[number, ...boolean[]]>; 152 declare type T05<T extends any[]> = Parameters<(x: string, ...args: T) => void>; 153 declare type T06 = T05<[number, ...boolean[]]>;
|
D | mappedTypes4.types | 91 type T05 = Partial<"hello" | "world" | 42>; 92 >T05 : T05
|
D | genericRestParameters2.symbols | 272 type T05<T extends any[]> = Parameters<(x: string, ...args: T) => void>; 273 >T05 : Symbol(T05, Decl(genericRestParameters2.ts, 69, 88)) 280 type T06 = T05<[number, ...boolean[]]>; 282 >T05 : Symbol(T05, Decl(genericRestParameters2.ts, 69, 88))
|
D | keyofIntersection.js | 9 type T05 = T02<A>; // "a" | "b" 45 declare type T05 = T02<A>;
|
D | keyofIntersection.symbols | 34 type T05 = T02<A>; // "a" | "b" 35 >T05 : Symbol(T05, Decl(keyofIntersection.ts, 6, 31))
|
D | mappedTypes4.js | 33 type T05 = Partial<"hello" | "world" | 42>; 115 declare type T05 = Partial<"hello" | "world" | 42>;
|
D | restTupleElements1.types | 17 type T05 = [...[...[...string[]]]]; 18 >T05 : T05
|
D | restTupleElements1.js | 7 type T05 = [...[...[...string[]]]]; 107 declare type T05 = [...[...[...string[]]]];
|
D | neverUnionIntersection.js | 6 type T05 = any | never;
|
D | restTupleElements1.symbols | 17 type T05 = [...[...[...string[]]]]; 18 >T05 : Symbol(T05, Decl(restTupleElements1.ts, 4, 30))
|
D | mappedTypes4.symbols | 108 type T05 = Partial<"hello" | "world" | 42>; 109 >T05 : Symbol(T05, Decl(mappedTypes4.ts, 30, 73))
|
D | mappedTypes6.types | 17 type T05<T> = { readonly [P in keyof T]?: T[P] }; 18 >T05 : T05<T>
|
D | mappedTypes6.js | 8 type T05<T> = { readonly [P in keyof T]?: T[P] }; 216 declare type T05<T> = {
|
D | genericRestParameters2.types | 439 type T05<T extends any[]> = Parameters<(x: string, ...args: T) => void>; 440 >T05 : [x: string, ...args: T] 444 type T06 = T05<[number, ...boolean[]]>;
|
/third_party/typescript/tests/cases/conformance/types/rest/ |
D | genericRestParameters2.ts | 74 type T05<T extends any[]> = Parameters<(x: string, ...args: T) => void>; alias 75 type T06 = T05<[number, ...boolean[]]>;
|
/third_party/typescript/tests/cases/conformance/types/never/ |
D | neverUnionIntersection.ts | 7 type T05 = any | never; alias
|
/third_party/typescript/tests/cases/conformance/types/keyof/ |
D | keyofIntersection.ts | 11 type T05 = T02<A>; // "a" | "b" alias
|
D | keyofAndIndexedAccessErrors.ts | 16 type T05 = keyof keyof keyof keyof keyof Object; alias
|
/third_party/typescript/tests/cases/conformance/types/tuple/ |
D | restTupleElements1.ts | 9 type T05 = [...[...[...string[]]]]; alias
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypes4.ts | 35 type T05 = Partial<"hello" | "world" | 42>; alias
|
D | mappedTypes6.ts | 10 type T05<T> = { readonly [P in keyof T]?: T[P] }; alias
|
/third_party/typescript/tests/cases/conformance/types/unknown/ |
D | unknownType1.ts | 10 type T05 = unknown & unknown; // unknown alias
|