Skip to content

Commit b6b05b4

Browse files
committed
generate new docs
1 parent 4fa4dd4 commit b6b05b4

14 files changed

+144
-50
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const router = srouter.router;
9292
console.log(router.generate('user', {id: 4})); // #/user/4
9393
```
9494

95-
### pass object by url
95+
### Pass object by url
9696

9797
You can pass object with `srouter.go` and recover it with `lastState` state property:
9898

READMEAPI.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const router = srouter.router;
8484
console.log(router.generate('user', {id: 4})); // #/user/4
8585
```
8686

87-
### pass object by url
87+
### Pass object by url
8888

8989
You can pass object with `srouter.go` and recover it with `lastState` state property:
9090

docs/assets/js/search.js

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

docs/classes/_router_.router.html

+84-17
Large diffs are not rendered by default.

docs/index.html

+25
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,31 @@ <h4 id="assign-alias-if-you-want-generate-links-">Assign alias if you want gener
137137
srouter.setRouters(configDefault).resolve();
138138
<span class="hljs-keyword">const</span> router = srouter.router;
139139
<span class="hljs-built_in">console</span>.log(router.generate(<span class="hljs-string">'user'</span>, {id: <span class="hljs-number">4</span>})); <span class="hljs-comment">// #/user/4</span>
140+
</code></pre>
141+
<h3 id="pass-object-by-url">Pass object by url</h3>
142+
<p>You can pass object with <code>srouter.go</code> and recover it with <code>lastState</code> state property:</p>
143+
<pre><code class="lang-tsx">export class TestPage4 {
144+
public state = {
145+
title: &quot;Hello brother&quot;,
146+
};
147+
148+
public view(state: State): JSXElements {
149+
return (
150+
&lt;div&gt;
151+
&lt;h1&gt;{state.title}&lt;/h1&gt;
152+
&lt;h2&gt;{state.lastState}&lt;/h2&gt;
153+
&lt;button
154+
onclick ={() =&gt; {
155+
state.title = &quot;Yes brother&quot;;
156+
srouter.go(&quot;/home/brother&quot;, {title: state.title});
157+
render(testPage4.view, state);
158+
}}
159+
&gt;Change Title&lt;/button&gt;
160+
&lt;a href=&quot;/home&quot; data-navigo&gt;go to root&lt;/a&gt;
161+
&lt;/div&gt;
162+
);
163+
}
164+
}
140165
</code></pre>
141166
<h4 id="set-your-generic-hooks-for-all-the-routes-">Set your generic hooks for all the routes:</h4>
142167
<pre><code class="lang-typescript"><span class="hljs-keyword">export</span> <span class="hljs-keyword">const</span> genericHooks: IGenericHooks = {

docs/interfaces/_helpers_interfaces_.iconfigrouters.html

+11-11
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> default</h3>
117117
<div class="tsd-signature tsd-kind-icon">default<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
118118
<aside class="tsd-sources">
119119
<ul>
120-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L98">helpers/interfaces.ts:98</a></li>
120+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L98">helpers/interfaces.ts:98</a></li>
121121
</ul>
122122
</aside>
123123
<div class="tsd-comment tsd-typography">
@@ -132,7 +132,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> default<wbr>Props</h3
132132
<div class="tsd-signature tsd-kind-icon">default<wbr>Props<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
133133
<aside class="tsd-sources">
134134
<ul>
135-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L120">helpers/interfaces.ts:120</a></li>
135+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L120">helpers/interfaces.ts:120</a></li>
136136
</ul>
137137
</aside>
138138
<div class="tsd-comment tsd-typography">
@@ -147,7 +147,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> generic<wbr>Hooks</h3
147147
<div class="tsd-signature tsd-kind-icon">generic<wbr>Hooks<span class="tsd-signature-symbol">:</span> <a href="_helpers_interfaces_.igenerichooks.html" class="tsd-signature-type">IGenericHooks</a></div>
148148
<aside class="tsd-sources">
149149
<ul>
150-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L112">helpers/interfaces.ts:112</a></li>
150+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L112">helpers/interfaces.ts:112</a></li>
151151
</ul>
152152
</aside>
153153
<div class="tsd-comment tsd-typography">
@@ -167,7 +167,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> hash</h3>
167167
<div class="tsd-signature tsd-kind-icon">hash<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
168168
<aside class="tsd-sources">
169169
<ul>
170-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L118">helpers/interfaces.ts:118</a></li>
170+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L118">helpers/interfaces.ts:118</a></li>
171171
</ul>
172172
</aside>
173173
<div class="tsd-comment tsd-typography">
@@ -187,7 +187,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> not<wbr>Found</h3>
187187
<div class="tsd-signature tsd-kind-icon">not<wbr>Found<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
188188
<aside class="tsd-sources">
189189
<ul>
190-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L102">helpers/interfaces.ts:102</a></li>
190+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L102">helpers/interfaces.ts:102</a></li>
191191
</ul>
192192
</aside>
193193
<div class="tsd-comment tsd-typography">
@@ -207,7 +207,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> not<wbr>Found<wbr>Hoo
207207
<div class="tsd-signature tsd-kind-icon">not<wbr>Found<wbr>Hooks<span class="tsd-signature-symbol">:</span> <a href="_helpers_interfaces_.ihooks.html" class="tsd-signature-type">IHooks</a></div>
208208
<aside class="tsd-sources">
209209
<ul>
210-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L114">helpers/interfaces.ts:114</a></li>
210+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L114">helpers/interfaces.ts:114</a></li>
211211
</ul>
212212
</aside>
213213
<div class="tsd-comment tsd-typography">
@@ -222,7 +222,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> not<wbr>Found<wbr>Pat
222222
<div class="tsd-signature tsd-kind-icon">not<wbr>Found<wbr>Path<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
223223
<aside class="tsd-sources">
224224
<ul>
225-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L104">helpers/interfaces.ts:104</a></li>
225+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L104">helpers/interfaces.ts:104</a></li>
226226
</ul>
227227
</aside>
228228
<div class="tsd-comment tsd-typography">
@@ -237,7 +237,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> root</h3>
237237
<div class="tsd-signature tsd-kind-icon">root<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
238238
<aside class="tsd-sources">
239239
<ul>
240-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L130">helpers/interfaces.ts:130</a></li>
240+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L130">helpers/interfaces.ts:130</a></li>
241241
</ul>
242242
</aside>
243243
<div class="tsd-comment tsd-typography">
@@ -260,7 +260,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> root<wbr>Path</h3>
260260
<div class="tsd-signature tsd-kind-icon">root<wbr>Path<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
261261
<aside class="tsd-sources">
262262
<ul>
263-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L96">helpers/interfaces.ts:96</a></li>
263+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L96">helpers/interfaces.ts:96</a></li>
264264
</ul>
265265
</aside>
266266
<div class="tsd-comment tsd-typography">
@@ -277,7 +277,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> routers</h3>
277277
<div class="tsd-signature tsd-kind-icon">routers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">&gt;</span></div>
278278
<aside class="tsd-sources">
279279
<ul>
280-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L124">helpers/interfaces.ts:124</a></li>
280+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L124">helpers/interfaces.ts:124</a></li>
281281
</ul>
282282
</aside>
283283
<div class="tsd-comment tsd-typography">
@@ -297,7 +297,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> use<wbr>Hash</h3>
297297
<div class="tsd-signature tsd-kind-icon">use<wbr>Hash<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
298298
<aside class="tsd-sources">
299299
<ul>
300-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L108">helpers/interfaces.ts:108</a></li>
300+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L108">helpers/interfaces.ts:108</a></li>
301301
</ul>
302302
</aside>
303303
<div class="tsd-comment tsd-typography">

docs/interfaces/_helpers_interfaces_.igenerichooks.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> after</h3>
113113
<li class="tsd-description">
114114
<aside class="tsd-sources">
115115
<ul>
116-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L38">helpers/interfaces.ts:38</a></li>
116+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L38">helpers/interfaces.ts:38</a></li>
117117
</ul>
118118
</aside>
119119
<div class="tsd-comment tsd-typography">
@@ -149,7 +149,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> before</h3>
149149
<li class="tsd-description">
150150
<aside class="tsd-sources">
151151
<ul>
152-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L33">helpers/interfaces.ts:33</a></li>
152+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L33">helpers/interfaces.ts:33</a></li>
153153
</ul>
154154
</aside>
155155
<div class="tsd-comment tsd-typography">

docs/interfaces/_helpers_interfaces_.ihooks.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> after</h3>
115115
<li class="tsd-description">
116116
<aside class="tsd-sources">
117117
<ul>
118-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L56">helpers/interfaces.ts:56</a></li>
118+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L56">helpers/interfaces.ts:56</a></li>
119119
</ul>
120120
</aside>
121121
<div class="tsd-comment tsd-typography">
@@ -151,7 +151,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> already</h3>
151151
<li class="tsd-description">
152152
<aside class="tsd-sources">
153153
<ul>
154-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L62">helpers/interfaces.ts:62</a></li>
154+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L62">helpers/interfaces.ts:62</a></li>
155155
</ul>
156156
</aside>
157157
<h4 class="tsd-parameters-title">Parameters</h4>
@@ -174,7 +174,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> before</h3>
174174
<li class="tsd-description">
175175
<aside class="tsd-sources">
176176
<ul>
177-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L51">helpers/interfaces.ts:51</a></li>
177+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L51">helpers/interfaces.ts:51</a></li>
178178
</ul>
179179
</aside>
180180
<div class="tsd-comment tsd-typography">
@@ -234,7 +234,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> leave</h3>
234234
<li class="tsd-description">
235235
<aside class="tsd-sources">
236236
<ul>
237-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L61">helpers/interfaces.ts:61</a></li>
237+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L61">helpers/interfaces.ts:61</a></li>
238238
</ul>
239239
</aside>
240240
<div class="tsd-comment tsd-typography">

docs/interfaces/_helpers_interfaces_.ipage.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h3>state</h3>
108108
<div class="tsd-signature tsd-kind-icon">state<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">State</span></div>
109109
<aside class="tsd-sources">
110110
<ul>
111-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L18">helpers/interfaces.ts:18</a></li>
111+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L18">helpers/interfaces.ts:18</a></li>
112112
</ul>
113113
</aside>
114114
<div class="tsd-comment tsd-typography">
@@ -123,7 +123,7 @@ <h3>view</h3>
123123
<div class="tsd-signature tsd-kind-icon">view<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">View</span></div>
124124
<aside class="tsd-sources">
125125
<ul>
126-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L20">helpers/interfaces.ts:20</a></li>
126+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L20">helpers/interfaces.ts:20</a></li>
127127
</ul>
128128
</aside>
129129
<div class="tsd-comment tsd-typography">

docs/interfaces/_helpers_interfaces_.irouters.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> alias</h3>
103103
<div class="tsd-signature tsd-kind-icon">alias<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
104104
<aside class="tsd-sources">
105105
<ul>
106-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L75">helpers/interfaces.ts:75</a></li>
106+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L75">helpers/interfaces.ts:75</a></li>
107107
</ul>
108108
</aside>
109109
<div class="tsd-comment tsd-typography">
@@ -123,7 +123,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> default<wbr>Props</h3
123123
<div class="tsd-signature tsd-kind-icon">default<wbr>Props<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
124124
<aside class="tsd-sources">
125125
<ul>
126-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L85">helpers/interfaces.ts:85</a></li>
126+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L85">helpers/interfaces.ts:85</a></li>
127127
</ul>
128128
</aside>
129129
<div class="tsd-comment tsd-typography">
@@ -138,7 +138,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> hooks</h3>
138138
<div class="tsd-signature tsd-kind-icon">hooks<span class="tsd-signature-symbol">:</span> <a href="_helpers_interfaces_.ihooks.html" class="tsd-signature-type">IHooks</a></div>
139139
<aside class="tsd-sources">
140140
<ul>
141-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L79">helpers/interfaces.ts:79</a></li>
141+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L79">helpers/interfaces.ts:79</a></li>
142142
</ul>
143143
</aside>
144144
<div class="tsd-comment tsd-typography">
@@ -158,7 +158,7 @@ <h3>page</h3>
158158
<div class="tsd-signature tsd-kind-icon">page<span class="tsd-signature-symbol">:</span> <a href="_helpers_interfaces_.ipage.html" class="tsd-signature-type">IPage</a></div>
159159
<aside class="tsd-sources">
160160
<ul>
161-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L71">helpers/interfaces.ts:71</a></li>
161+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L71">helpers/interfaces.ts:71</a></li>
162162
</ul>
163163
</aside>
164164
<div class="tsd-comment tsd-typography">
@@ -178,7 +178,7 @@ <h3>path</h3>
178178
<div class="tsd-signature tsd-kind-icon">path<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
179179
<aside class="tsd-sources">
180180
<ul>
181-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L67">helpers/interfaces.ts:67</a></li>
181+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L67">helpers/interfaces.ts:67</a></li>
182182
</ul>
183183
</aside>
184184
<div class="tsd-comment tsd-typography">
@@ -193,7 +193,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> routers</h3>
193193
<div class="tsd-signature tsd-kind-icon">routers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Array</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">&gt;</span></div>
194194
<aside class="tsd-sources">
195195
<ul>
196-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L83">helpers/interfaces.ts:83</a></li>
196+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L83">helpers/interfaces.ts:83</a></li>
197197
</ul>
198198
</aside>
199199
<div class="tsd-comment tsd-typography">

docs/modules/_helpers_interfaces_.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ <h3>Handler</h3>
100100
<div class="tsd-signature tsd-kind-icon">Handler<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">object</span></div>
101101
<aside class="tsd-sources">
102102
<ul>
103-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L6">helpers/interfaces.ts:6</a></li>
103+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L6">helpers/interfaces.ts:6</a></li>
104104
</ul>
105105
</aside>
106106
</section>
@@ -110,7 +110,7 @@ <h3>Keys</h3>
110110
<div class="tsd-signature tsd-kind-icon">Keys<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
111111
<aside class="tsd-sources">
112112
<ul>
113-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L4">helpers/interfaces.ts:4</a></li>
113+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L4">helpers/interfaces.ts:4</a></li>
114114
</ul>
115115
</aside>
116116
</section>
@@ -120,7 +120,7 @@ <h3>Params</h3>
120120
<div class="tsd-signature tsd-kind-icon">Params<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">State</span></div>
121121
<aside class="tsd-sources">
122122
<ul>
123-
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/7e6e71d/src/helpers/interfaces.ts#L5">helpers/interfaces.ts:5</a></li>
123+
<li>Defined in <a href="https://github.com/spieljs/spiel-client/blob/4fa4dd4/src/helpers/interfaces.ts#L5">helpers/interfaces.ts:5</a></li>
124124
</ul>
125125
</aside>
126126
</section>

0 commit comments

Comments
 (0)