Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Cookies

import type { Cookies } from "https://raw.githubusercontent.com/worker-tools/middleware/master/index.ts";

An object of the cookies sent with this request. It is for reading convenience only. To make changes, use the associated cookie store instead (provided by the middleware along with this object)

type Cookies = {
readonly [key: string]: string;
}
;

§Type

§
{
readonly [key: string]: string;
}
[src]