Searched refs:NonFooKeys2 (Results 1 – 5 of 5) sorted by relevance
/third_party/typescript/tests/cases/conformance/types/conditional/ |
D | conditionalTypes1.ts | 329 type NonFooKeys2<T extends object> = Exclude<keyof T, 'foo'>; alias 332 type Test2 = NonFooKeys2<{foo: 1, bar: 2, baz: 3}>; // "bar" | "baz"
|
/third_party/typescript/tests/baselines/reference/ |
D | conditionalTypes1.js | 327 type NonFooKeys2<T extends object> = Exclude<keyof T, 'foo'>; 330 type Test2 = NonFooKeys2<{foo: 1, bar: 2, baz: 3}>; // "bar" | "baz" 689 type NonFooKeys2<T extends object> = Exclude<keyof T, 'foo'>; 695 type Test2 = NonFooKeys2<{
|
D | conditionalTypes1.types | 976 type NonFooKeys2<T extends object> = Exclude<keyof T, 'foo'>; 977 >NonFooKeys2 : NonFooKeys2<T> 985 type Test2 = NonFooKeys2<{foo: 1, bar: 2, baz: 3}>; // "bar" | "baz"
|
D | conditionalTypes1.symbols | 1263 type NonFooKeys2<T extends object> = Exclude<keyof T, 'foo'>; 1264 >NonFooKeys2 : Symbol(NonFooKeys2, Decl(conditionalTypes1.ts, 324, 61)) 1276 type Test2 = NonFooKeys2<{foo: 1, bar: 2, baz: 3}>; // "bar" | "baz" 1278 >NonFooKeys2 : Symbol(NonFooKeys2, Decl(conditionalTypes1.ts, 324, 61))
|
D | conditionalTypes1.errors.txt | 487 type NonFooKeys2<T extends object> = Exclude<keyof T, 'foo'>; 490 type Test2 = NonFooKeys2<{foo: 1, bar: 2, baz: 3}>; // "bar" | "baz"
|