diff options
author | Luke Ingalls <45518011+lukeingalls@users.noreply.github.com> | 2021-06-21 20:39:05 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 04:39:05 +0200 |
commit | 188222b893624438f3e5e77c7d8b9871beb02c70 (patch) | |
tree | 369fe007b324fefb352bbf2c74e55b652bf7a281 /docs/typescript/faqs.md | |
parent | 388274e02ea7e054f0bbbe4f863dc32447c5971d (diff) |
docs: fix typo (#11044)
Diffstat (limited to 'docs/typescript/faqs.md')
-rw-r--r-- | docs/typescript/faqs.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/typescript/faqs.md b/docs/typescript/faqs.md index b661cc149..00bc99552 100644 --- a/docs/typescript/faqs.md +++ b/docs/typescript/faqs.md @@ -89,7 +89,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 are: -- Re-exporting of types is ambiguous and requires to know if the source module +- Re-exporting of types is ambiguous and requires knowing if the source module is exporting runtime code or just type information. Therefore, it is 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 |