CookieStore#delete without the Promise.
Rest
...args: [key: string] | [options: Omit<ResponseCookie, "value" | "expires">]CookieStore#get without the Promise.
Rest
...args: [key: string] | [options: ResponseCookie]CookieStore#getAll without the Promise.
Rest
...args: [] | [key: string] | [options: ResponseCookie]CookieStore#set without the Promise.
Rest
...args: [key: string, value: string, cookie?: Partial<ResponseCookie>] | [options: ResponseCookie]
A class for manipulating Response cookies (
Set-Cookie
header). Loose implementation of the experimental Cookie Store API The main difference isResponseCookies
methods do not return a Promise.