Skip to content

OneOf access by case and inferenceΒ #59146

Closed as not planned
Closed as not planned
@maxime1992

Description

@maxime1992

πŸ” Search Terms

  • Generic derived value type
  • oneOf

βœ… Viability Checklist

⭐ Suggestion

Here's a very simple example:

interface CaseA {
  valueA: any;
}

interface CaseB {
  valueB: any;
}

type OneOf = {
    $case: "caseA";
    caseA: CaseA;
} | {
    $case: "caseB";
    caseB: CaseB;
} 

declare const request: OneOf

// I know that without further checks, on Typescript side, on the OneOf type, we're only sure that
// `$case` exists and we're unsure about the rest. Yet, as human looking at this type, I know we'll
// have either the caseA or caseB and therefore accessing the OneOf type by its $case should result
// in a type of `CaseA | CaseB`. Is there any way of making this work?
request[request.$case]

Here's a link to a Typescript Playground

πŸ“ƒ Motivating Example

When using a oneOf with a discriminator, you can now access directly the value by doing yourOneOfVariable[yourOneOfVariable.discriminator] and it'll give you the union of the values.

πŸ’» Use Cases

  1. What do you want to use this for?

We have a lot of oneOf equivalent in our codebase, especially as we're using protobuf and this is a very classic usecase.

  1. What shortcomings exist with current approaches?

Not even sure this can be achieve in a type safe way currently?

  1. What workarounds are you using in the meantime?

Casting the variable as any and then using as again to cast to the union type.

Metadata

Metadata

Assignees

No one assigned

    Labels

    DuplicateAn existing issue was already created

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions