-
Notifications
You must be signed in to change notification settings - Fork 3k
Property stub based type definition does not support parameter default value #660
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
Comments
This was referenced Nov 5, 2015
It should probably just be
|
Yes, you're correct. Completely forgot it somehow even staring optional operators all time. |
Will update PR and close this one. |
kwonoj
added a commit
to kwonoj/rxjs
that referenced
this issue
Nov 9, 2015
…ult parameter value closes ReactiveX#660
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Some of operators allows default value if it's not specified like below,
and
Observable
has property stub to create prototype in module likerepeat: <T>(count: number) => Observable<T>
default value for parameter is not allowed, end result causes typescript compiler complains without parameter.
related with #608, and #643 for remove property based stubs.
The text was updated successfully, but these errors were encountered: