Files
DefinitelyTyped/types/akamai-edgeworkers

Bindings for the Akamai EdgeWorker API. This allows you to write your EdgeWorkers in TypeScript.

Types are available for the Request and Response objects, as well as the built-in modules.

User Guide

EdgeWorkers are written in ECMAScript6, so you need to set your tsconfig.json to use es6 as the compilation target and module code generator:

{
    "compilerOptions": {
        "module": "es6",
        "target": "es6",
//...
    }
}

Using the Request and Response Objects

The predefined EdgeWorker callbacks take Request and Response objects as arguments. After you have installed this package, you can create a main.ts with the following stubs:

/// <reference types="akamai-edgeworkers"/>

export function onClientRequest(request : EW.MutableRequest & EW.HasRespondWith){}
export function onOriginRequest(request : EW.MutableRequest) {}
export function onOriginResponse(request : EW.ImmutableRequest & EW.HasRespondWith, response : EW.Response) {}
export function onClientResponse(request : EW.ImmutableRequest, response : EW.Response) {} 

The triple-slashed first line references this package and pulls EW into your namespace.

Using Built-In Modules

Bindings are available for the built-in cookies and url-search-params modules. Once you've added the triple-slash reference to akamai-edgeworkers you can import them normally:

/// <reference types="akamai-edgeworkers"/>

import { Cookies } from 'cookies';

function onClientRequest(request: EW.MutableRequest & EW.HasRespondWith) {
    const cookie = new Cookies(request.getHeader('cookies') || undefined);
//...
}