UNPKG

@schoolofmotion/rocket-booster

Version:

Serverless reverse proxy and load balancing library built for Cloudflare Workers.

15 lines (14 loc) 296 B
export interface HeadersOptions { /** * Sets request header going upstream to the backend. */ request?: { [key: string]: string; }; /** * Sets response header coming downstream to the client. */ response?: { [key: string]: string; }; }