diff options
author | 2022-10-12 12:33:46 +0000 | |
---|---|---|
committer | 2022-10-12 12:33:46 +0000 | |
commit | 640ce72d336101ff3bc02a596373ddbf1713e5db (patch) | |
tree | 80caf8a35836c4977d81f6db2e4066cd872f75df | |
parent | 1e27992437aa0371b8550acb3e3f79e62721a506 (diff) | |
download | astro-640ce72d336101ff3bc02a596373ddbf1713e5db.tar.gz astro-640ce72d336101ff3bc02a596373ddbf1713e5db.tar.zst astro-640ce72d336101ff3bc02a596373ddbf1713e5db.zip |
[ci] format
Diffstat (limited to '')
-rw-r--r-- | packages/astro/src/core/cookies/cookies.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/astro/src/core/cookies/cookies.ts b/packages/astro/src/core/cookies/cookies.ts index 6a4adf788..f999db8a1 100644 --- a/packages/astro/src/core/cookies/cookies.ts +++ b/packages/astro/src/core/cookies/cookies.ts @@ -25,7 +25,11 @@ interface AstroCookieInterface { interface AstroCookiesInterface { get(key: string): AstroCookieInterface; has(key: string): boolean; - set(key: string, value: string | number | boolean | Record<string, any>, options?: AstroCookieSetOptions): void; + set( + key: string, + value: string | number | boolean | Record<string, any>, + options?: AstroCookieSetOptions + ): void; delete(key: string, options?: AstroCookieDeleteOptions): void; } |