Skip to content

Commit

Permalink
docs: complete setAuthCookie method docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lfleischmann committed Sep 29, 2023
1 parent 1f2b61d commit 7c52dae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/static/jsdoc/hanko-frontend-sdk/Cookie.html
Original file line number Diff line number Diff line change
Expand Up @@ -581,13 +581,18 @@ <h5>Parameters:</h5>

<td class="type">


<code class="param-type"><a href="SetAuthCookieOptions.html">SetAuthCookieOptions</a></code>



</td>





<td class="description last"></td>
<td class="description last">Options for setting the auth cookie.</td>
</tr>


Expand Down
2 changes: 1 addition & 1 deletion docs/static/jsdoc/hanko-frontend-sdk/lib_Cookie.ts.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ <h1>lib/Cookie.ts</h1>
* Stores the authentication token to the cookie.
*
* @param {string} token - The authentication token to be stored.
* @param options
* @param {SetAuthCookieOptions} options - Options for setting the auth cookie.
*/
setAuthCookie(
token: string,
Expand Down
2 changes: 1 addition & 1 deletion frontend/frontend-sdk/src/lib/Cookie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class Cookie {
* Stores the authentication token to the cookie.
*
* @param {string} token - The authentication token to be stored.
* @param options
* @param {SetAuthCookieOptions} options - Options for setting the auth cookie.
*/
setAuthCookie(
token: string,
Expand Down

0 comments on commit 7c52dae

Please sign in to comment.