GithubHelp home page GithubHelp logo

Comments (3)

whzx5byb avatar whzx5byb commented on May 1, 2024

Shouldn't TypeScript know that if authenticated is true, the level prop should have an id property instead of a name property?

No, ts won't do type narrowing on props if it is not a discriminated union.

but I want to avoid retyping the props multiple times.

You can avoid retyping by using distribution behavior, in variant ways.

A. distribute on original type Props<T>:

- type Props<T extends boolean> = {
+ type Props<T extends boolean> = T extends unknown ? {
    authenticated: T;
    level: T extends true ? {id: number} : {name: string};
- };
+ } : never;

or

B. distribute when pass in function parameter

- const User = <T extends boolean>(props: Props<T>) => {
+ const User = <T extends boolean>(props: T extends unknown ? Props<T> : never) => {

Both ways will work for you.

from typescript.

jcalz avatar jcalz commented on May 1, 2024

This is a question and unfortunately doesn't belong here (when you opened a new issue you chose "Other", but you really should have chosen "Question", which tells you to go to Stack Overflow instead.) I'm still waiting for you to respond to the comment requesting clarification at your Stack Overflow question, which is the right place for this discussion.

from typescript.

RyanCavanaugh avatar RyanCavanaugh commented on May 1, 2024

It looks like this is a question rather than a bug report. This issue tracker is for tracking bugs and active work on TypeScript itself, rather than a general forum for programmers using TypeScript to get help or ask questions.

You can ask questions on sites like Stack Overflow. We are not able to provide one-on-one support on the issue tracker. Please read the issue template carefully - it has important information on what kinds of reports can be acted on here, as well as links to useful TypeScript resources. Thanks!

from typescript.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.