TypeScript support
The Runtime Edge includes TypeScript types. In fact, the library is written in TypeScript!
Just in case 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": ["@runtime-edge/types"]
}
}
Alternatively, you can load them using triple-slash directive (opens in a new tab) as well:
/// <reference types="@runtime-edge/types" />