Skip to content

Commit

Permalink
fixing typo in compiler options docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dennybiasiolli committed Oct 1, 2019
1 parent 5fc508e commit 75e5e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/reference/compiler-options/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ <h3 id="isolatedmodules"><a href="#isolatedmodules"><code>isolatedModules</code>
Setting the <code>isolatedModules</code> flag tells TypeScript to warn you if you write certain code that can't be correctly interpreted by a single-file transpilation process.
It does not change the behavior of your code, or otherwise change the behavior of TypeScript's checking and emitting process.</p>
<h4 id="exports-of-non-value-identifiers"><a href="#exports-of-non-value-identifiers">Exports of Non-Value Identifiers</h4></a>
<p>In TypeScript, you can import a <em>type</em> and then subsequently import it:
<p>In TypeScript, you can import a <em>type</em> and then subsequently export it:
<pre class="typescript-code"><span class="tm-kw">import</span> { <span class="tm-vr">someType</span>, <span class="tm-vr">someFunction</span> } <span class="tm-kw">from</span> <span class="tm-str">"someModule"</span>;

<span class="tm-mth">someFunction</span>();
Expand Down

0 comments on commit 75e5e36

Please sign in to comment.