Git Product home page Git Product logo

Comments (3)

Andarist avatar Andarist commented on May 16, 2024

This is just not something that TS supports. Inference targets have to appear in parameter lists - the "sources" in constraints of other type parameters are ignored. An even simpler repro:

interface Box<T> {
  value: T;
}
function test<T, B extends Box<T>>(a: B) {}
test({ value: 10 });

Arguably, you probably don't want this signature. In situations like this you probably don't want to allow such calls:

new X<number, string, { point: 1, datum: 'a' }>({ point: 1, datum: 'a' })

I'd assume that your E should be strictly { point: number, datum: string } here but your signature allows different subtypes of that.

from typescript.

jcalz avatar jcalz commented on May 16, 2024

see #7234 which was not implemented in favor of having people use intersections instead.

from typescript.

jcayzac avatar jcayzac commented on May 16, 2024

Thank you both, @Andarist @jcalz

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.