Home
last modified time | relevance | path

Searched refs:T01 (Results 1 – 25 of 76) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
DneverUnionIntersection.symbols2 type T01 = string | never;
3 >T01 : Symbol(T01, Decl(neverUnionIntersection.ts, 0, 0))
DneverUnionIntersection.types2 type T01 = string | never;
3 >T01 : string
DmappedTypes1.types11 type T01 = { [P in "x" | "y"]: P };
12 >T01 : T01
DmappedTypes4.types76 type T01 = Readonly<A | B | C | null | undefined>;
77 >T01 : T01
DkeyofIntersection.types10 type T01 = keyof (A & B); // "a" | "b"
11 >T01 : "b" | "a"
DkeyofIntersection.js5 type T01 = keyof (A & B); // "a" | "b"
41 declare type T01 = keyof (A & B);
DkeyofIntersection.symbols10 type T01 = keyof (A & B); // "a" | "b"
11 >T01 : Symbol(T01, Decl(keyofIntersection.ts, 1, 23))
DneverUnionIntersection.js2 type T01 = string | never;
DmappedTypes1.js5 type T01 = { [P in "x" | "y"]: P };
58 declare type T01 = {
DmappedTypes4.js29 type T01 = Readonly<A | B | C | null | undefined>;
111 declare type T01 = Readonly<A | B | C | null | undefined>;
DrestTupleElements1.types5 type T01 = [string, string?];
6 >T01 : T01
DrestTupleElements1.js3 type T01 = [string, string?];
103 declare type T01 = [string, string?];
DmappedTypes1.symbols12 type T01 = { [P in "x" | "y"]: P };
13 >T01 : Symbol(T01, Decl(mappedTypes1.ts, 2, 40))
DmappedTypes4.symbols86 type T01 = Readonly<A | B | C | null | undefined>;
87 >T01 : Symbol(T01, Decl(mappedTypes4.ts, 26, 30))
DrestTupleElements1.symbols5 type T01 = [string, string?];
6 >T01 : Symbol(T01, Decl(restTupleElements1.ts, 0, 21))
DgenericRestParameters2.js68 type T01 = Parameters<(x: number, y: string, ...z: boolean[]) => void>;
148 declare type T01 = Parameters<(x: number, y: string, ...z: boolean[]) => void>;
DmappedTypes6.types5 type T01<T> = { [P in keyof T]?: T[P] };
6 >T01 : T01<T>
/third_party/typescript/tests/cases/conformance/types/never/
DneverUnionIntersection.ts3 type T01 = string | never; alias
/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofIntersection.ts7 type T01 = keyof (A & B); // "a" | "b" alias
/third_party/typescript/tests/cases/conformance/types/tuple/
DrestTupleElements1.ts5 type T01 = [string, string?]; alias
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypes1.ts7 type T01 = { [P in "x" | "y"]: P }; alias
DmappedTypes4.ts31 type T01 = Readonly<A | B | C | null | undefined>; alias
DmappedTypesArraysTuples.ts8 type T01 = Partial<[number, string?, ...boolean[]]>; alias
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters2.ts70 type T01 = Parameters<(x: number, y: string, ...z: boolean[]) => void>; alias
/third_party/typescript/tests/cases/conformance/types/unknown/
DunknownType1.ts6 type T01 = unknown & undefined; // undefined alias

1234