Packages
@edge-runtime/types

Edge Runtime Types

The @edge-runtime/types package has the TypeScript global types for using Edge Runtime.

Installation

npm install @edge-runtime/types

Usage

If you need to have these types loaded as part of the global context, you can add them inside tsconfig.json (opens in a new tab):

{
  "compilerOptions": {
    "types": ["@edge-runtime/types"]
  }
}

Alternatively, you can load them using triple-slash directive (opens in a new tab) as well:

/// <reference types="@edge-runtime/types" />