Home
last modified time | relevance | path

Searched refs:NonFooKeys2 (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/tests/cases/conformance/types/conditional/
DconditionalTypes1.ts329 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/
DconditionalTypes1.js327 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<{
DconditionalTypes1.types976 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"
DconditionalTypes1.symbols1263 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))
DconditionalTypes1.errors.txt487 type NonFooKeys2<T extends object> = Exclude<keyof T, 'foo'>;
490 type Test2 = NonFooKeys2<{foo: 1, bar: 2, baz: 3}>; // "bar" | "baz"