/third_party/typescript/tests/baselines/reference/ |
D | neverUnionIntersection.symbols | 2 type T01 = string | never; 3 >T01 : Symbol(T01, Decl(neverUnionIntersection.ts, 0, 0))
|
D | neverUnionIntersection.types | 2 type T01 = string | never; 3 >T01 : string
|
D | mappedTypes1.types | 11 type T01 = { [P in "x" | "y"]: P }; 12 >T01 : T01
|
D | mappedTypes4.types | 76 type T01 = Readonly<A | B | C | null | undefined>; 77 >T01 : T01
|
D | keyofIntersection.types | 10 type T01 = keyof (A & B); // "a" | "b" 11 >T01 : "b" | "a"
|
D | keyofIntersection.js | 5 type T01 = keyof (A & B); // "a" | "b" 41 declare type T01 = keyof (A & B);
|
D | keyofIntersection.symbols | 10 type T01 = keyof (A & B); // "a" | "b" 11 >T01 : Symbol(T01, Decl(keyofIntersection.ts, 1, 23))
|
D | neverUnionIntersection.js | 2 type T01 = string | never;
|
D | mappedTypes1.js | 5 type T01 = { [P in "x" | "y"]: P }; 58 declare type T01 = {
|
D | mappedTypes4.js | 29 type T01 = Readonly<A | B | C | null | undefined>; 111 declare type T01 = Readonly<A | B | C | null | undefined>;
|
D | restTupleElements1.types | 5 type T01 = [string, string?]; 6 >T01 : T01
|
D | restTupleElements1.js | 3 type T01 = [string, string?]; 103 declare type T01 = [string, string?];
|
D | mappedTypes1.symbols | 12 type T01 = { [P in "x" | "y"]: P }; 13 >T01 : Symbol(T01, Decl(mappedTypes1.ts, 2, 40))
|
D | mappedTypes4.symbols | 86 type T01 = Readonly<A | B | C | null | undefined>; 87 >T01 : Symbol(T01, Decl(mappedTypes4.ts, 26, 30))
|
D | restTupleElements1.symbols | 5 type T01 = [string, string?]; 6 >T01 : Symbol(T01, Decl(restTupleElements1.ts, 0, 21))
|
D | genericRestParameters2.js | 68 type T01 = Parameters<(x: number, y: string, ...z: boolean[]) => void>; 148 declare type T01 = Parameters<(x: number, y: string, ...z: boolean[]) => void>;
|
D | mappedTypes6.types | 5 type T01<T> = { [P in keyof T]?: T[P] }; 6 >T01 : T01<T>
|
/third_party/typescript/tests/cases/conformance/types/never/ |
D | neverUnionIntersection.ts | 3 type T01 = string | never; alias
|
/third_party/typescript/tests/cases/conformance/types/keyof/ |
D | keyofIntersection.ts | 7 type T01 = keyof (A & B); // "a" | "b" alias
|
/third_party/typescript/tests/cases/conformance/types/tuple/ |
D | restTupleElements1.ts | 5 type T01 = [string, string?]; alias
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypes1.ts | 7 type T01 = { [P in "x" | "y"]: P }; alias
|
D | mappedTypes4.ts | 31 type T01 = Readonly<A | B | C | null | undefined>; alias
|
D | mappedTypesArraysTuples.ts | 8 type T01 = Partial<[number, string?, ...boolean[]]>; alias
|
/third_party/typescript/tests/cases/conformance/types/rest/ |
D | genericRestParameters2.ts | 70 type T01 = Parameters<(x: number, y: string, ...z: boolean[]) => void>; alias
|
/third_party/typescript/tests/cases/conformance/types/unknown/ |
D | unknownType1.ts | 6 type T01 = unknown & undefined; // undefined alias
|