Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 657 Bytes

types.mdx

File metadata and controls

27 lines (19 loc) · 657 Bytes

Runtime Edge Types

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

Installation

npm install @runtime-edge/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": ["@runtime-edge/types"]
  }
}

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

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