Skip to content

Commit 0275adc

Browse files
authored
Release v1.5.0 (#238)
1 parent 9a15c54 commit 0275adc

27 files changed

+632
-83
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## [v1.5.0](https://github.com/auth0/auth0-react/tree/v1.5.0) (2021-05-05)
4+
5+
**Added**
6+
7+
- Expose `handleRedirectCallback` [\#233](https://github.com/auth0/auth0-react/pull/233) ([stevehobbsdev](https://github.com/stevehobbsdev))
8+
- Add TUser type param to useAuth0 hook [\#230](https://github.com/auth0/auth0-react/pull/230) ([Jameskmonger](https://github.com/Jameskmonger))
9+
10+
**Changed**
11+
12+
- Update User type [\#236](https://github.com/auth0/auth0-react/pull/236) ([tkiryu](https://github.com/tkiryu))
13+
14+
**Fixed**
15+
16+
- Check for state along with error param [\#231](https://github.com/auth0/auth0-react/pull/231) ([adamjmcgrath](https://github.com/adamjmcgrath))
17+
318
## [v1.4.0](https://github.com/auth0/auth0-react/tree/v1.4.0) (2021-03-26)
419

520
**Added**

docs/assets/js/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/classes/errors.oautherror.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ <h3>constructor</h3>
134134
<aside class="tsd-sources">
135135
<p>Overrides Error.constructor</p>
136136
<ul>
137-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/errors.tsx#L7">src/errors.tsx:7</a></li>
137+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/errors.tsx#L7">src/errors.tsx:7</a></li>
138138
</ul>
139139
</aside>
140140
<h4 class="tsd-parameters-title">Parameters</h4>
@@ -343,6 +343,7 @@ <h2>Legend</h2>
343343
</ul>
344344
<ul class="tsd-legend">
345345
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
346+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
346347
</ul>
347348
</div>
348349
</div>

docs/classes/index.user.html

Lines changed: 428 additions & 0 deletions
Large diffs are not rendered by default.

docs/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,11 @@ <h2>Getting Started</h2>
155155
<span style="color: #000000">}</span>
156156

157157
<span style="color: #000000">export default App;</span>
158+
</code></pre>
159+
<p>If you&#39;re using TypeScript, you can pass a type parameter to <code>useAuth0</code> to specify the type of <code>user</code>:</p>
160+
<pre><code class="language-ts"><span style="color: #0000FF">const</span><span style="color: #000000"> { </span><span style="color: #0070C1">user</span><span style="color: #000000"> } = </span><span style="color: #795E26">useAuth0</span><span style="color: #000000">&lt;{ </span><span style="color: #001080">name</span><span style="color: #000000">: </span><span style="color: #267F99">string</span><span style="color: #000000"> }&gt;();</span>
161+
162+
<span style="color: #001080">user</span><span style="color: #000000">.</span><span style="color: #001080">name</span><span style="color: #000000">; </span><span style="color: #008000">// is a string</span>
158163
</code></pre>
159164
<a href="#use-with-a-class-component" id="use-with-a-class-component" style="color: inherit; text-decoration: none;">
160165
<h3>Use with a Class Component</h3>
@@ -326,6 +331,7 @@ <h2>Legend</h2>
326331
</ul>
327332
<ul class="tsd-legend">
328333
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
334+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
329335
</ul>
330336
<ul class="tsd-legend">
331337
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>

docs/interfaces/auth0_context.auth0contextinterface.html

Lines changed: 73 additions & 16 deletions
Large diffs are not rendered by default.

docs/interfaces/auth0_context.redirectloginoptions.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> app<wbr>State</h3>
128128
<div class="tsd-signature tsd-kind-icon">app<wbr>State<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
129129
<aside class="tsd-sources">
130130
<ul>
131-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-context.tsx#L28">src/auth0-context.tsx:28</a></li>
131+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-context.tsx#L30">src/auth0-context.tsx:30</a></li>
132132
</ul>
133133
</aside>
134134
<div class="tsd-comment tsd-typography">
@@ -198,7 +198,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> fragment</h3>
198198
<div class="tsd-signature tsd-kind-icon">fragment<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
199199
<aside class="tsd-sources">
200200
<ul>
201-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-context.tsx#L33">src/auth0-context.tsx:33</a></li>
201+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-context.tsx#L35">src/auth0-context.tsx:35</a></li>
202202
</ul>
203203
</aside>
204204
<div class="tsd-comment tsd-typography">
@@ -288,7 +288,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> organization</h3>
288288
</aside>
289289
<div class="tsd-comment tsd-typography">
290290
<div class="lead">
291-
<p>The Id of an organization to log in to (Organizations is currently a Closed Beta).</p>
291+
<p>The Id of an organization to log in to.</p>
292292
</div>
293293
<p>This will specify an <code>organization</code> parameter in your user&#39;s login request and will add a step to validate
294294
the <code>org_id</code> claim in your user&#39;s ID Token.</p>
@@ -321,7 +321,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> redirect<wbr>Uri</h3>
321321
<div class="tsd-signature tsd-kind-icon">redirect<wbr>Uri<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
322322
<aside class="tsd-sources">
323323
<ul>
324-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-context.tsx#L23">src/auth0-context.tsx:23</a></li>
324+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-context.tsx#L25">src/auth0-context.tsx:25</a></li>
325325
</ul>
326326
</aside>
327327
<div class="tsd-comment tsd-typography">
@@ -420,7 +420,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> ui_<wbr>locales</h3>
420420
</nav>
421421
<nav class="tsd-navigation secondary menu-sticky">
422422
<ul class="before-current">
423-
<li class=" tsd-kind-interface tsd-parent-kind-module">
423+
<li class=" tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter">
424424
<a href="auth0_context.auth0contextinterface.html" class="tsd-kind-icon">Auth0<wbr>Context<wbr>Interface</a>
425425
</li>
426426
</ul>
@@ -440,6 +440,7 @@ <h2>Legend</h2>
440440
</ul>
441441
<ul class="tsd-legend">
442442
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
443+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
443444
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
444445
</ul>
445446
<ul class="tsd-legend">

docs/interfaces/auth0_provider.auth0provideroptions.html

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> advanced<wbr>Options<
130130
<div class="tsd-signature tsd-kind-icon">advanced<wbr>Options<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{ </span>defaultScope<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> }</span></div>
131131
<aside class="tsd-sources">
132132
<ul>
133-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L107">src/auth0-provider.tsx:107</a></li>
133+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L108">src/auth0-provider.tsx:108</a></li>
134134
</ul>
135135
</aside>
136136
<div class="tsd-comment tsd-typography">
@@ -160,7 +160,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> audience</h3>
160160
<div class="tsd-signature tsd-kind-icon">audience<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
161161
<aside class="tsd-sources">
162162
<ul>
163-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L131">src/auth0-provider.tsx:131</a></li>
163+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L132">src/auth0-provider.tsx:132</a></li>
164164
</ul>
165165
</aside>
166166
<div class="tsd-comment tsd-typography">
@@ -175,7 +175,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> authorize<wbr>Timeout
175175
<div class="tsd-signature tsd-kind-icon">authorize<wbr>Timeout<wbr>InSeconds<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
176176
<aside class="tsd-sources">
177177
<ul>
178-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L103">src/auth0-provider.tsx:103</a></li>
178+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L104">src/auth0-provider.tsx:104</a></li>
179179
</ul>
180180
</aside>
181181
<div class="tsd-comment tsd-typography">
@@ -191,7 +191,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> cache<wbr>Location</h
191191
<div class="tsd-signature tsd-kind-icon">cache<wbr>Location<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;memory&quot;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">&quot;localstorage&quot;</span></div>
192192
<aside class="tsd-sources">
193193
<ul>
194-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L91">src/auth0-provider.tsx:91</a></li>
194+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L92">src/auth0-provider.tsx:92</a></li>
195195
</ul>
196196
</aside>
197197
<div class="tsd-comment tsd-typography">
@@ -208,7 +208,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> children</h3>
208208
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">ReactNode</span></div>
209209
<aside class="tsd-sources">
210210
<ul>
211-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L36">src/auth0-provider.tsx:36</a></li>
211+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L37">src/auth0-provider.tsx:37</a></li>
212212
</ul>
213213
</aside>
214214
<div class="tsd-comment tsd-typography">
@@ -223,7 +223,7 @@ <h3>client<wbr>Id</h3>
223223
<div class="tsd-signature tsd-kind-icon">client<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
224224
<aside class="tsd-sources">
225225
<ul>
226-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L70">src/auth0-provider.tsx:70</a></li>
226+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L71">src/auth0-provider.tsx:71</a></li>
227227
</ul>
228228
</aside>
229229
<div class="tsd-comment tsd-typography">
@@ -238,7 +238,7 @@ <h3>domain</h3>
238238
<div class="tsd-signature tsd-kind-icon">domain<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
239239
<aside class="tsd-sources">
240240
<ul>
241-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L62">src/auth0-provider.tsx:62</a></li>
241+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L63">src/auth0-provider.tsx:63</a></li>
242242
</ul>
243243
</aside>
244244
<div class="tsd-comment tsd-typography">
@@ -255,7 +255,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> invitation</h3>
255255
<div class="tsd-signature tsd-kind-icon">invitation<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
256256
<aside class="tsd-sources">
257257
<ul>
258-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L142">src/auth0-provider.tsx:142</a></li>
258+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L143">src/auth0-provider.tsx:143</a></li>
259259
</ul>
260260
</aside>
261261
<div class="tsd-comment tsd-typography">
@@ -270,7 +270,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> issuer</h3>
270270
<div class="tsd-signature tsd-kind-icon">issuer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
271271
<aside class="tsd-sources">
272272
<ul>
273-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L66">src/auth0-provider.tsx:66</a></li>
273+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L67">src/auth0-provider.tsx:67</a></li>
274274
</ul>
275275
</aside>
276276
<div class="tsd-comment tsd-typography">
@@ -285,7 +285,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> leeway</h3>
285285
<div class="tsd-signature tsd-kind-icon">leeway<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
286286
<aside class="tsd-sources">
287287
<ul>
288-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L84">src/auth0-provider.tsx:84</a></li>
288+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L85">src/auth0-provider.tsx:85</a></li>
289289
</ul>
290290
</aside>
291291
<div class="tsd-comment tsd-typography">
@@ -302,7 +302,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> max<wbr>Age</h3>
302302
<div class="tsd-signature tsd-kind-icon">max<wbr>Age<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></div>
303303
<aside class="tsd-sources">
304304
<ul>
305-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L121">src/auth0-provider.tsx:121</a></li>
305+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L122">src/auth0-provider.tsx:122</a></li>
306306
</ul>
307307
</aside>
308308
<div class="tsd-comment tsd-typography">
@@ -319,7 +319,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> on<wbr>Redirect<wbr>C
319319
<div class="tsd-signature tsd-kind-icon">on<wbr>Redirect<wbr>Callback<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>appState<span class="tsd-signature-symbol">: </span><a href="../modules/auth0_provider.html#appstate" class="tsd-signature-type" data-tsd-kind="Type alias">AppState</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div>
320320
<aside class="tsd-sources">
321321
<ul>
322-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L42">src/auth0-provider.tsx:42</a></li>
322+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L43">src/auth0-provider.tsx:43</a></li>
323323
</ul>
324324
</aside>
325325
<div class="tsd-comment tsd-typography">
@@ -357,7 +357,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> organization</h3>
357357
<div class="tsd-signature tsd-kind-icon">organization<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
358358
<aside class="tsd-sources">
359359
<ul>
360-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L138">src/auth0-provider.tsx:138</a></li>
360+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L139">src/auth0-provider.tsx:139</a></li>
361361
</ul>
362362
</aside>
363363
<div class="tsd-comment tsd-typography">
@@ -374,7 +374,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> redirect<wbr>Uri</h3>
374374
<div class="tsd-signature tsd-kind-icon">redirect<wbr>Uri<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
375375
<aside class="tsd-sources">
376376
<ul>
377-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L78">src/auth0-provider.tsx:78</a></li>
377+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L79">src/auth0-provider.tsx:79</a></li>
378378
</ul>
379379
</aside>
380380
<div class="tsd-comment tsd-typography">
@@ -393,7 +393,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> scope</h3>
393393
<div class="tsd-signature tsd-kind-icon">scope<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
394394
<aside class="tsd-sources">
395395
<ul>
396-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L127">src/auth0-provider.tsx:127</a></li>
396+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L128">src/auth0-provider.tsx:128</a></li>
397397
</ul>
398398
</aside>
399399
<div class="tsd-comment tsd-typography">
@@ -410,7 +410,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> skip<wbr>Redirect<wbr
410410
<div class="tsd-signature tsd-kind-icon">skip<wbr>Redirect<wbr>Callback<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
411411
<aside class="tsd-sources">
412412
<ul>
413-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L56">src/auth0-provider.tsx:56</a></li>
413+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L57">src/auth0-provider.tsx:57</a></li>
414414
</ul>
415415
</aside>
416416
<div class="tsd-comment tsd-typography">
@@ -433,7 +433,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> use<wbr>Refresh<wbr>T
433433
<div class="tsd-signature tsd-kind-icon">use<wbr>Refresh<wbr>Tokens<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
434434
<aside class="tsd-sources">
435435
<ul>
436-
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/3cd13e7/src/auth0-provider.tsx#L98">src/auth0-provider.tsx:98</a></li>
436+
<li>Defined in <a href="https://github.com/auth0/auth0-react/blob/9a15c54/src/auth0-provider.tsx#L99">src/auth0-provider.tsx:99</a></li>
437437
</ul>
438438
</aside>
439439
<div class="tsd-comment tsd-typography">
@@ -554,6 +554,7 @@ <h2>Legend</h2>
554554
</ul>
555555
<ul class="tsd-legend">
556556
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
557+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
557558
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
558559
</ul>
559560
<ul class="tsd-legend">

docs/interfaces/index.getidtokenclaimsoptions.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ <h2>Legend</h2>
199199
</ul>
200200
<ul class="tsd-legend">
201201
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
202+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
202203
</ul>
203204
<ul class="tsd-legend">
204205
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>

docs/interfaces/index.gettokensilentlyoptions.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ <h2>Legend</h2>
264264
</ul>
265265
<ul class="tsd-legend">
266266
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
267+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
267268
</ul>
268269
<ul class="tsd-legend">
269270
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>

0 commit comments

Comments
 (0)