Skip to content

Commit 1ed4811

Browse files
committed
1.1.5
1 parent 4300a8b commit 1ed4811

33 files changed

+496
-474
lines changed

.npmignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
22
test/
33
lib/build/**
4-
docs/
4+
docs/
5+
src/

README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -36,30 +36,29 @@ client.on("error", (err) => {
3636
client.on("connect", (netID) => {
3737
console.log(`Connected netID ${netID}`);
3838
const peer = new Peer(client, netID);
39-
peer.send(TextPacket.from(0x1));
39+
peer.send(TextPacket.from(0x1)); // Send Hello Packet
4040
});
4141

4242
client.on("disconnect", (netID) => {
4343
console.log(`Disconnected netID ${netID}`);
4444
});
4545

46-
client.on("raw", (netID, data) => {
47-
console.log("raw", data);
48-
});
49-
46+
// Receive Game message packet
5047
client.on("action", (peer, data) => {
51-
console.log("action", { peer, data });
48+
console.log(`Peer (${peer.data.netID}) action`, { data });
5249
if (data.action === "quit") {
5350
peer.disconnect();
5451
}
5552
});
5653

54+
// Receive Tank update packet
5755
client.on("tank", (peer, tank) => {
58-
console.log("tank", { peer, tank });
56+
console.log(`Peer (${peer.data.netID}) tank`, { tank });
5957
});
6058

61-
client.on("auth", (peer, data) => {
62-
console.log("auth", { peer, data });
59+
// Receive Generic text packet
60+
client.on("text", (peer, data) => {
61+
console.log(`Peer (${peer.data.netID}) text`, { data });
6362
});
6463

6564
client.listen(1024);

docs/assets/highlight.css

+9-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
--dark-hl-6: #9CDCFE;
1616
--light-hl-7: #000000FF;
1717
--dark-hl-7: #D4D4D4;
18-
--light-hl-8: #AF00DB;
19-
--dark-hl-8: #C586C0;
18+
--light-hl-8: #008000;
19+
--dark-hl-8: #6A9955;
20+
--light-hl-9: #AF00DB;
21+
--dark-hl-9: #C586C0;
2022
--light-code-background: #FFFFFF;
2123
--dark-code-background: #1E1E1E;
2224
}
@@ -31,6 +33,7 @@
3133
--hl-6: var(--light-hl-6);
3234
--hl-7: var(--light-hl-7);
3335
--hl-8: var(--light-hl-8);
36+
--hl-9: var(--light-hl-9);
3437
--code-background: var(--light-code-background);
3538
} }
3639

@@ -44,6 +47,7 @@
4447
--hl-6: var(--dark-hl-6);
4548
--hl-7: var(--dark-hl-7);
4649
--hl-8: var(--dark-hl-8);
50+
--hl-9: var(--dark-hl-9);
4751
--code-background: var(--dark-code-background);
4852
} }
4953

@@ -57,6 +61,7 @@
5761
--hl-6: var(--light-hl-6);
5862
--hl-7: var(--light-hl-7);
5963
--hl-8: var(--light-hl-8);
64+
--hl-9: var(--light-hl-9);
6065
--code-background: var(--light-code-background);
6166
}
6267

@@ -70,6 +75,7 @@
7075
--hl-6: var(--dark-hl-6);
7176
--hl-7: var(--dark-hl-7);
7277
--hl-8: var(--dark-hl-8);
78+
--hl-9: var(--dark-hl-9);
7379
--code-background: var(--dark-code-background);
7480
}
7581

@@ -82,4 +88,5 @@
8288
.hl-6 { color: var(--hl-6); }
8389
.hl-7 { color: var(--hl-7); }
8490
.hl-8 { color: var(--hl-8); }
91+
.hl-9 { color: var(--hl-9); }
8592
pre, code { background: var(--code-background); }

docs/assets/search.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/classes/Client.html

+33-23
Large diffs are not rendered by default.

docs/classes/Peer.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h4>Hierarchy</h4>
2525
<ul class="tsd-hierarchy">
2626
<li><span class="target">Peer</span></li></ul></section><aside class="tsd-sources">
2727
<ul>
28-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/structures/Peer.ts#L6">src/structures/Peer.ts:6</a></li></ul></aside>
28+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/structures/Peer.ts#L6">src/structures/Peer.ts:6</a></li></ul></aside>
2929
<section class="tsd-panel-group tsd-index-group">
3030
<section class="tsd-panel tsd-index-panel">
3131
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -71,19 +71,19 @@ <h5><span class="tsd-kind-parameter">client</span>: <a href="Client.html" class=
7171
<h5><span class="tsd-kind-parameter">netID</span>: <span class="tsd-signature-type">number</span></h5></li></ul></div>
7272
<h4 class="tsd-returns-title">Returns <a href="Peer.html" class="tsd-signature-type tsd-kind-class">Peer</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
7373
<ul>
74-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/structures/Peer.ts#L9">src/structures/Peer.ts:9</a></li></ul></aside></li></ul></section></section>
74+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/structures/Peer.ts#L9">src/structures/Peer.ts:9</a></li></ul></aside></li></ul></section></section>
7575
<section class="tsd-panel-group tsd-member-group">
7676
<h2>Properties</h2>
7777
<section class="tsd-panel tsd-member tsd-is-private"><a id="client" class="tsd-anchor"></a>
7878
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>client</span><a href="#client" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
7979
<div class="tsd-signature"><span class="tsd-kind-property">client</span><span class="tsd-signature-symbol">:</span> <a href="Client.html" class="tsd-signature-type tsd-kind-class">Client</a></div><aside class="tsd-sources">
8080
<ul>
81-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/structures/Peer.ts#L9">src/structures/Peer.ts:9</a></li></ul></aside></section>
81+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/structures/Peer.ts#L9">src/structures/Peer.ts:9</a></li></ul></aside></section>
8282
<section class="tsd-panel tsd-member"><a id="data" class="tsd-anchor"></a>
8383
<h3 class="tsd-anchor-link"><span>data</span><a href="#data" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
8484
<div class="tsd-signature"><span class="tsd-kind-property">data</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type tsd-kind-type-parameter">T</span></div><aside class="tsd-sources">
8585
<ul>
86-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/structures/Peer.ts#L7">src/structures/Peer.ts:7</a></li></ul></aside></section></section>
86+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/structures/Peer.ts#L7">src/structures/Peer.ts:7</a></li></ul></aside></section></section>
8787
<section class="tsd-panel-group tsd-member-group">
8888
<h2>Accessors</h2>
8989
<section class="tsd-panel tsd-member"><a id="ping" class="tsd-anchor"></a>
@@ -95,7 +95,7 @@ <h3 class="tsd-anchor-link"><span>ping</span><a href="#ping" aria-label="Permali
9595
</div>
9696
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
9797
<ul>
98-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/structures/Peer.ts#L19">src/structures/Peer.ts:19</a></li></ul></aside></li></ul></section></section>
98+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/structures/Peer.ts#L19">src/structures/Peer.ts:19</a></li></ul></aside></li></ul></section></section>
9999
<section class="tsd-panel-group tsd-member-group">
100100
<h2>Methods</h2>
101101
<section class="tsd-panel tsd-member"><a id="disconnect" class="tsd-anchor"></a>
@@ -114,7 +114,7 @@ <h5><span class="tsd-kind-parameter">type</span>: <span class="tsd-signature-typ
114114
</div></li></ul></div>
115115
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
116116
<ul>
117-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/structures/Peer.ts#L65">src/structures/Peer.ts:65</a></li></ul></aside></li></ul></section>
117+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/structures/Peer.ts#L65">src/structures/Peer.ts:65</a></li></ul></aside></li></ul></section>
118118
<section class="tsd-panel tsd-member"><a id="send" class="tsd-anchor"></a>
119119
<h3 class="tsd-anchor-link"><span>send</span><a href="#send" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
120120
<ul class="tsd-signatures">
@@ -131,7 +131,7 @@ <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-sym
131131
</div></li></ul></div>
132132
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
133133
<ul>
134-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/structures/Peer.ts#L27">src/structures/Peer.ts:27</a></li></ul></aside></li></ul></section>
134+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/structures/Peer.ts#L27">src/structures/Peer.ts:27</a></li></ul></aside></li></ul></section>
135135
<section class="tsd-panel tsd-member"><a id="send-2" class="tsd-anchor"></a>
136136
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>send</span><a href="#send-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
137137
<ul class="tsd-signatures">
@@ -156,7 +156,7 @@ <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-sym
156156
</div></li></ul></div>
157157
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
158158
<ul>
159-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/structures/Peer.ts#L37">src/structures/Peer.ts:37</a></li></ul></aside></li></ul></section></section></div>
159+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/structures/Peer.ts#L37">src/structures/Peer.ts:37</a></li></ul></aside></li></ul></section></section></div>
160160
<div class="col-sidebar">
161161
<div class="page-menu">
162162
<div class="tsd-navigation settings">
@@ -209,7 +209,7 @@ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.9389
209209
<li><a href="../interfaces/VariantOptions.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Variant<wbr/>Options</span></a></li>
210210
<li><a href="../types/Sendable.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg><span>Sendable</span></a></li>
211211
<li><a href="../types/VariantArg.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>Variant<wbr/>Arg</span></a></li>
212-
<li><a href="../functions/parseAction.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg><span>parse<wbr/>Action</span></a></li></ul></nav></div></div></div>
212+
<li><a href="../functions/parseText.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg><span>parse<wbr/>Text</span></a></li></ul></nav></div></div></div>
213213
<div class="tsd-generator">
214214
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
215215
<div class="overlay"></div></body></html>

docs/classes/TankPacket.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h4>Hierarchy</h4>
2323
<ul class="tsd-hierarchy">
2424
<li><span class="target">TankPacket</span></li></ul></section><aside class="tsd-sources">
2525
<ul>
26-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/packets/TankPacket.ts#L8">src/packets/TankPacket.ts:8</a></li></ul></aside>
26+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/packets/TankPacket.ts#L8">src/packets/TankPacket.ts:8</a></li></ul></aside>
2727
<section class="tsd-panel-group tsd-index-group">
2828
<section class="tsd-panel tsd-index-panel">
2929
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -61,7 +61,7 @@ <h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-
6161
</div></li></ul></div>
6262
<h4 class="tsd-returns-title">Returns <a href="TankPacket.html" class="tsd-signature-type tsd-kind-class">TankPacket</a></h4><aside class="tsd-sources">
6363
<ul>
64-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/packets/TankPacket.ts#L13">src/packets/TankPacket.ts:13</a></li></ul></aside></li></ul></section></section>
64+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/packets/TankPacket.ts#L13">src/packets/TankPacket.ts:13</a></li></ul></aside></li></ul></section></section>
6565
<section class="tsd-panel-group tsd-member-group">
6666
<h2>Properties</h2>
6767
<section class="tsd-panel tsd-member"><a id="data" class="tsd-anchor"></a>
@@ -70,7 +70,7 @@ <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code
7070
<div class="tsd-comment tsd-typography"><p>The tankpacket header and data.</p>
7171
</div><aside class="tsd-sources">
7272
<ul>
73-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/packets/TankPacket.ts#L13">src/packets/TankPacket.ts:13</a></li></ul></aside></section></section>
73+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/packets/TankPacket.ts#L13">src/packets/TankPacket.ts:13</a></li></ul></aside></section></section>
7474
<section class="tsd-panel-group tsd-member-group">
7575
<h2>Methods</h2>
7676
<section class="tsd-panel tsd-member"><a id="parse" class="tsd-anchor"></a>
@@ -82,7 +82,7 @@ <h3 class="tsd-anchor-link"><span>parse</span><a href="#parse" aria-label="Perma
8282
</div>
8383
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Buffer</span></h4><aside class="tsd-sources">
8484
<ul>
85-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/packets/TankPacket.ts#L55">src/packets/TankPacket.ts:55</a></li></ul></aside></li></ul></section>
85+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/packets/TankPacket.ts#L55">src/packets/TankPacket.ts:55</a></li></ul></aside></li></ul></section>
8686
<section class="tsd-panel tsd-member"><a id="from" class="tsd-anchor"></a>
8787
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>from</span><a href="#from" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
8888
<ul class="tsd-signatures">
@@ -99,7 +99,7 @@ <h5><span class="tsd-kind-parameter">data</span>: <a href="../interfaces/Tank.ht
9999
</div></li></ul></div>
100100
<h4 class="tsd-returns-title">Returns <a href="TankPacket.html" class="tsd-signature-type tsd-kind-class">TankPacket</a></h4><aside class="tsd-sources">
101101
<ul>
102-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/packets/TankPacket.ts#L19">src/packets/TankPacket.ts:19</a></li></ul></aside></li></ul></section>
102+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/packets/TankPacket.ts#L19">src/packets/TankPacket.ts:19</a></li></ul></aside></li></ul></section>
103103
<section class="tsd-panel tsd-member"><a id="fromBuffer" class="tsd-anchor"></a>
104104
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>from<wbr/>Buffer</span><a href="#fromBuffer" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
105105
<ul class="tsd-signatures">
@@ -116,7 +116,7 @@ <h5><span class="tsd-kind-parameter">buf</span>: <span class="tsd-signature-type
116116
</div></li></ul></div>
117117
<h4 class="tsd-returns-title">Returns <a href="TankPacket.html" class="tsd-signature-type tsd-kind-class">TankPacket</a></h4><aside class="tsd-sources">
118118
<ul>
119-
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/47ce4c9/src/packets/TankPacket.ts#L27">src/packets/TankPacket.ts:27</a></li></ul></aside></li></ul></section></section></div>
119+
<li>Defined in <a href="https://github.com/JadlionHD/growtopia.js/blob/4300a8b/src/packets/TankPacket.ts#L27">src/packets/TankPacket.ts:27</a></li></ul></aside></li></ul></section></section></div>
120120
<div class="col-sidebar">
121121
<div class="page-menu">
122122
<div class="tsd-navigation settings">
@@ -167,7 +167,7 @@ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.9389
167167
<li><a href="../interfaces/VariantOptions.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Variant<wbr/>Options</span></a></li>
168168
<li><a href="../types/Sendable.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg><span>Sendable</span></a></li>
169169
<li><a href="../types/VariantArg.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>Variant<wbr/>Arg</span></a></li>
170-
<li><a href="../functions/parseAction.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg><span>parse<wbr/>Action</span></a></li></ul></nav></div></div></div>
170+
<li><a href="../functions/parseText.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg><span>parse<wbr/>Text</span></a></li></ul></nav></div></div></div>
171171
<div class="tsd-generator">
172172
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
173173
<div class="overlay"></div></body></html>

0 commit comments

Comments
 (0)