docs(typescript): fix typo in faqs (#10682)

This commit is contained in:
Raika Toriyama 2021-05-19 12:56:44 +09:00 committed by Bert Belder
parent 913d4f28b3
commit 0c40446bed
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -82,7 +82,7 @@ are using the TypeScript compiler to emit the code, it will follow the same
This means that certain language features are not supportable. Those features This means that certain language features are not supportable. Those features
are: are:
- Re-exporting of types is ambigious and requires to know if the source module - Re-exporting of types is ambiguous and requires to know if the source module
is exporting runtime code or just type information. Therefore, it is is exporting runtime code or just type information. Therefore, it is
recommended that you use `import type` and `export type` for type only imports recommended that you use `import type` and `export type` for type only imports
and exports. This will help ensure that when the code is emitted, that all the and exports. This will help ensure that when the code is emitted, that all the