You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For those of us using typescript, typings would improve autocompletion for our IDEs a lot. But I'm also sure, many people have some private types already done. It's time to throw them together.
That would maybe also mean some restructuring to be more clear? Because at the moment I do this:
import { Task } from 'ember-concurrency/-task-property';
which not only doesn't exist but also feels like the wrong import. I'd prefer something like this:
import Task from 'ember-concurrency/task';
which seems more about right - just saying.
The text was updated successfully, but these errors were encountered:
For those of us using typescript, typings would improve autocompletion for our IDEs a lot. But I'm also sure, many people have some private types already done. It's time to throw them together.
That would maybe also mean some restructuring to be more clear? Because at the moment I do this:
which not only doesn't exist but also feels like the wrong import. I'd prefer something like this:
which seems more about right - just saying.
The text was updated successfully, but these errors were encountered: