Skip to content
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

Add phantom types to all data structures in order to allow type extraction #30

Closed
gcanti opened this issue Apr 9, 2017 · 0 comments · Fixed by #31
Closed

Add phantom types to all data structures in order to allow type extraction #30

gcanti opened this issue Apr 9, 2017 · 0 comments · Fixed by #31
Assignees
Labels
Milestone

Comments

@gcanti
Copy link
Owner

gcanti commented Apr 9, 2017

Example

export class Some<A> {
  _A: A // <= phantom type
  ...
}

declare function f<O extends Option<any>>(o: O): O['_A'];

// x :: number
const x = f(some(1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant