Skip to Content
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 :

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

Alternatively, you can load them using triple-slash directive  as well:

/// <reference types="@edge-runtime/types" />
Last updated on