Home
last modified time | relevance | path

Searched defs:Example4 (Results 1 – 3 of 3) sorted by relevance

/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofIntersection.ts25 type Example4<T extends string, U extends string> = (Record<T, any> & Record<U, any>); alias
26 type Result4 = keyof Example4<'x', 'y'>; // "x" | "y" alias
/third_party/typescript/tests/baselines/reference/
DassignmentCompatWithDiscriminatedUnion.js230 var Example4; variable
231 (function (Example4) { argument
/third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/
DassignmentCompatWithDiscriminatedUnion.ts48 namespace Example4 { namespace