[ci] format
This commit is contained in:
parent
1e27992437
commit
640ce72d33
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue