-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Instantiate Generic Functions within Conditional Types #61133
Comments
I think I remember that extending instantiation expressions to the type level would give an ambiguous meaning to a type of the form |
@jcalz Hi, thanks for the reference links Hmmm, it does seem this feature has been lingering for several years now. Reading up, it looks like the main challenges were a combination of design limitations (as it was in 2018) and a syntax differentiation issue, finding a way to make an appropriate distinction between "type instantiation" and "instantiation expression" within the context of conditional types. It would be great to get an update though. |
See also #40179 |
Update: I've since found an alternative solution that solves for the motivating example Solution supported for TS 4.8.4 and above (Reference). // Generic Arguments
const T0 = Type.Argument(0)
const T1 = Type.Argument(1)
const T2 = Type.Argument(2)
// Generic Type with Parameters
const Vector = Syntax({ T0, T1, T2 }, `{
x: T0,
y: T1,
z: T2
}`)
// Syntax Instantiated Generic Types (Solution Here)
const BasisVectors = Syntax({ Vector }, `{
readonly type: 'BasisVectors'
x: Vector<1, 0, 0>,
y: Vector<0, 1, 0>,
z: Vector<0, 0, 1>,
}`)
type BasisVectors = Static<typeof BasisVectors>
// type BasisVectors = {
// readonly type: "BasisVectors";
// x: { x: 1; y: 0; z: 0; };
// y: { x: 0; y: 1; z: 0; };
// z: { x: 0; y: 0; z: 1; };
// } Would still be keen for the requested feature. For future reference, here is an updated (and simpler) case where the ConditionalReturnType type cannot be reasonably implemented (TS 5.8.0) declare function method<T>(value: T): T
// ...
type A = ReturnType<typeof method<number>> // type A: number
type ConditionalReturnType<F, T> = { ... } // ... this type cannot be implemented
type B = ConditionalReturnType<typeof method, number> // type B: ??? |
🔍 Search Terms
Instantiation Expressions, Conditional Types
✅ Viability Checklist
⭐ Suggestion
I am looking for a way to be able to instantiate a generic function / return type via conditional type.
Related Issue: #22617
📃 Motivating Example
I have written a small type-level parser for one of the libraries I manage. I have support for type parameterization.
Parameterized Type
... but would also like to support generic functions as parameters (and resolve exterior types via function call / instantiation expression)
When implementing the second case, I noticed it's not actually possible to instantiate the
Vector
signature within the context of a conditional type expression (i.e. the parser). In this case, I have a parsedTNumber
type ready to supply the genericVector
function, but no way to instantiate it.Essentially I would need the following but in a conditional type (Reference)
💻 Use Cases
Implement generic types in a type level syntax parser.
Cannot instantiate generic signatures within a conditional type.
I'm not sure there are workarounds.
The text was updated successfully, but these errors were encountered: