We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With frint-data, Models and Collections can be observed via .get$():
frint-data
.get$()
const todo$ = todo.get$();
As it is done for frint-store via #393, it would be useful to make them interoperable with Observable.from as per the spec on TC39: https://github.com/tc39/proposal-observable#observablefrom
frint-store
Observable.from
const todo$ = Observable.from(todo);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently
With
frint-data
, Models and Collections can be observed via.get$()
:Proposal
As it is done for
frint-store
via #393, it would be useful to make them interoperable withObservable.from
as per the spec on TC39: https://github.com/tc39/proposal-observable#observablefromThe text was updated successfully, but these errors were encountered: