[ci] format

This commit is contained in:
matthewp 2022-10-12 12:33:46 +00:00 committed by fredkbot
parent 1e27992437
commit 640ce72d33

View file

@ -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;
}