-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move the streaming and polling client to AsyncCreatable (#18)
- Loading branch information
1 parent
04fb140
commit 33939f1
Showing
40 changed files
with
7,900 additions
and
832 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
**/docs/* linguist-generated=true | ||
**/docs/* linguist-documentation |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1048,8 +1048,8 @@ | |
<dt>example</dt> | ||
<dd><p>const aliases = await Aliases.retrieve<Aliases>(); | ||
aliases.set('myAlias', <a href="mailto:'[email protected]">'[email protected]</a>'); | ||
await aliases.write();</p> | ||
<p>// Shorthand to get an alias. | ||
await aliases.write(); | ||
// Shorthand to get an alias. | ||
const username: string = await Aliases.fetch('myAlias');</p> | ||
</dd> | ||
<dt>see</dt> | ||
|
@@ -2198,7 +2198,7 @@ <h3><span class="tsd-flag ts-flagStatic">Static</span> create</h3> | |
<aside class="tsd-sources"> | ||
<p>Overrides <a href="configgroup.html">ConfigGroup</a>.<a href="configgroup.html#create">create</a></p> | ||
<ul> | ||
<li>Defined in config/aliases.ts:71</li> | ||
<li>Defined in config/aliases.ts:70</li> | ||
</ul> | ||
</aside> | ||
<div class="tsd-comment tsd-typography"> | ||
|
@@ -2239,7 +2239,7 @@ <h3><span class="tsd-flag ts-flagStatic">Static</span> fetch</h3> | |
<li class="tsd-description"> | ||
<aside class="tsd-sources"> | ||
<ul> | ||
<li>Defined in config/aliases.ts:132</li> | ||
<li>Defined in config/aliases.ts:131</li> | ||
</ul> | ||
</aside> | ||
<div class="tsd-comment tsd-typography"> | ||
|
@@ -2314,7 +2314,7 @@ <h3><span class="tsd-flag ts-flagStatic">Static</span> get<wbr>File<wbr>Name</h3 | |
<aside class="tsd-sources"> | ||
<p>Overrides <a href="configfile.html">ConfigFile</a>.<a href="configfile.html#getfilename">getFileName</a></p> | ||
<ul> | ||
<li>Defined in config/aliases.ts:47</li> | ||
<li>Defined in config/aliases.ts:46</li> | ||
</ul> | ||
</aside> | ||
<div class="tsd-comment tsd-typography"> | ||
|
@@ -2341,7 +2341,7 @@ <h3><span class="tsd-flag ts-flagStatic">Static</span> get<wbr>Options</h3> | |
<aside class="tsd-sources"> | ||
<p>Overrides <a href="configgroup.html">ConfigGroup</a>.<a href="configgroup.html#getoptions">getOptions</a></p> | ||
<ul> | ||
<li>Defined in config/aliases.ts:55</li> | ||
<li>Defined in config/aliases.ts:54</li> | ||
</ul> | ||
</aside> | ||
<div class="tsd-comment tsd-typography"> | ||
|
@@ -2363,7 +2363,7 @@ <h3><span class="tsd-flag ts-flagStatic">Static</span> parse<wbr>And<wbr>Update< | |
<li class="tsd-description"> | ||
<aside class="tsd-sources"> | ||
<ul> | ||
<li>Defined in config/aliases.ts:100</li> | ||
<li>Defined in config/aliases.ts:99</li> | ||
</ul> | ||
</aside> | ||
<div class="tsd-comment tsd-typography"> | ||
|
@@ -2438,7 +2438,7 @@ <h3><span class="tsd-flag ts-flagStatic">Static</span> retrieve</h3> | |
<aside class="tsd-sources"> | ||
<p>Overrides <a href="configfile.html">ConfigFile</a>.<a href="configfile.html#retrieve">retrieve</a></p> | ||
<ul> | ||
<li>Defined in config/aliases.ts:85</li> | ||
<li>Defined in config/aliases.ts:84</li> | ||
</ul> | ||
</aside> | ||
<div class="tsd-comment tsd-typography"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.