Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/ext/fetch/lib.deno_fetch.d.ts>Headers

A modern runtime for JavaScript and TypeScript.
Latest
variable Headers
import { Headers } from "https://deno.land/x/deno@v2.0.4/ext/fetch/lib.deno_fetch.d.ts";

This Fetch API interface allows you to perform various actions on HTTP request and response headers. These actions include retrieving, setting, adding to, and removing. A Headers object has an associated header list, which is initially empty and consists of zero or more name and value pairs. You can add to this using methods like append() (see Examples). In all methods of this interface, header names are matched by case-insensitive byte sequence.

type

{ readonly prototype: Headers; new (init?: HeadersInit): Headers; }