@@ -25,7 +25,7 @@ export class CookieClient {
2525
2626 /**
2727 * Create a new instance of CookieClient
28- *
28+ *
2929 * @param encryption - The encryption instance for cookie operations
3030 */
3131 constructor ( encryption : Encryption ) {
@@ -34,7 +34,7 @@ export class CookieClient {
3434
3535 /**
3636 * Encrypt a key value pair to be sent in the cookie header
37- *
37+ *
3838 * @param key - The cookie key
3939 * @param value - The value to encrypt
4040 * @returns The encrypted cookie string or null if encryption fails
@@ -45,7 +45,7 @@ export class CookieClient {
4545
4646 /**
4747 * Sign a key value pair to be sent in the cookie header
48- *
48+ *
4949 * @param key - The cookie key
5050 * @param value - The value to sign
5151 * @returns The signed cookie string or null if signing fails
@@ -56,7 +56,7 @@ export class CookieClient {
5656
5757 /**
5858 * Encode a key value pair to be sent in the cookie header
59- *
59+ *
6060 * @param _ - Unused key parameter
6161 * @param value - The value to encode
6262 * @param stringify - Whether to stringify the value before encoding
@@ -68,7 +68,7 @@ export class CookieClient {
6868
6969 /**
7070 * Unsign a signed cookie value
71- *
71+ *
7272 * @param key - The cookie key
7373 * @param value - The signed cookie value to unsign
7474 * @returns The original value if valid signature, null otherwise
@@ -81,7 +81,7 @@ export class CookieClient {
8181
8282 /**
8383 * Decrypt an encrypted cookie value
84- *
84+ *
8585 * @param key - The cookie key
8686 * @param value - The encrypted cookie value to decrypt
8787 * @returns The decrypted value or null if decryption fails
@@ -94,7 +94,7 @@ export class CookieClient {
9494
9595 /**
9696 * Decode an encoded cookie value
97- *
97+ *
9898 * @param _ - Unused key parameter
9999 * @param value - The encoded cookie value to decode
100100 * @param stringified - Whether the value was stringified during encoding
@@ -109,7 +109,7 @@ export class CookieClient {
109109
110110 /**
111111 * Parse response cookie
112- *
112+ *
113113 * @param key - The cookie key
114114 * @param value - The cookie value to parse
115115 * @returns The parsed value or undefined if parsing fails
0 commit comments