Skip to content

Commit 865663a

Browse files
committed
docs: update language about list of known types.
fixes #609
1 parent ef7e5ba commit 865663a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/dummy/app/templates/docs/ts-guide/using-ts-effectively.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,9 @@ You may find the blog series ["Typing Your Ember"][typing-your-ember] helpful as
4242

4343
You'll want to use other type definitions as much as possible. The first thing you should do, for example, is install the types for your testing framework of choice: `@types/ember-mocha` or `@types/ember-qunit`. Beyond that, look for types from other addons: it will mean writing `any` a lot less and getting a lot more help both from your editor and from the compiler.
4444

45-
To make this easier, we're maintaining [a list of addons with known type definitions][known-typings] either on [Definitely Typed] or as part of the addon itself. (If you know of typings that aren't in that list, please open a pull request to add them!)
45+
*Where can I find types?* Some addons will ship them with their packages, and work out of the box. For others, you can search for them on [Definitely Typed], or on npm under the `@types` namespace. (In the future we hope to maintain a list of known types; keep your eyes open!)
4646

47-
[known-typings]: ./known-typings.md
48-
[definitely typed]: https://github.com/DefinitelyTyped/DefinitelyTyped
47+
[Definitely Typed]: https://github.com/DefinitelyTyped/DefinitelyTyped
4948

5049
## The `types` directory
5150

0 commit comments

Comments
 (0)