CookieStore#delete without the Promise.
Rest ...args: [key: string] | [options: Omit<ResponseCookie, "expires" | "value">]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-Cookieheader). Loose implementation of the experimental Cookie Store API The main difference isResponseCookiesmethods do not return a Promise.