summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-10-12 12:33:46 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-10-12 12:33:46 +0000
commit640ce72d336101ff3bc02a596373ddbf1713e5db (patch)
tree80caf8a35836c4977d81f6db2e4066cd872f75df
parent1e27992437aa0371b8550acb3e3f79e62721a506 (diff)
downloadastro-640ce72d336101ff3bc02a596373ddbf1713e5db.tar.gz
astro-640ce72d336101ff3bc02a596373ddbf1713e5db.tar.zst
astro-640ce72d336101ff3bc02a596373ddbf1713e5db.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/astro/src/core/cookies/cookies.ts6
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;
}