GithubHelp home page GithubHelp logo

Comments (6)

ahejlsberg avatar ahejlsberg commented on June 21, 2024 5

This is sort of a bug, but really more of a possible improvement. At any rate, during type inference in the instantiation of the Parameters<T> conditional type, we attempt to resolve the return type of bar without really needing to, which leads to a circularity. It's a pretty easy fix, I'll put up a PR.

from typescript.

fatcerberus avatar fatcerberus commented on June 21, 2024

I would like to be able to infer type of a function A that calls another function B, returning its value, relying on parameters of function A (not sure if the description is good, see the code snippet).

I'm not 100% sure, but based on your description I think you're looking for #40179?

from typescript.

finom avatar finom commented on June 21, 2024

@fatcerberus I think I'd still need to refer to the function type: paramsof typeof bar what would cause the same problem.

from typescript.

finom avatar finom commented on June 21, 2024

@ahejlsberg that's amazing! Honestly, I didn't expect to get this reaction seeing so many issues at this repo ❤️

from typescript.

finom avatar finom commented on June 21, 2024

@ahejlsberg that's perfect! Thank you! I think many people would be happy to show their appreciation to you by sponsoring but unfortunately your sponsoring page is not set up. This update changes a lot in my code and solves a problem that I was having for very long time. Sorry for delayed reply, I didn't know how TS versioning works and just installed the PR version ❤️

from typescript.

finom avatar finom commented on June 21, 2024

@ahejlsberg I'm doing some tests but still getting similar problems. Could you also check the following and more complex example:

function withSchmuck<T, R>(arg: T, handler: (arg2: T) => R) {
  console.log(arg);
  return handler;
}

const foo = withSchmuck('hello', (arg) => {
  return bar(arg);
});

function bar(arg: Parameters<typeof foo>[0]) {
   console.log(arg);
}

The arg of bar should have type of string but TS says this is the same error as I got before. As in the previous case, nothing is trying to infer the return type, only arguments.

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.