UNPKG

@schoolofmotion/rocket-booster

Version:

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

6 lines (5 loc) 175 B
export interface Storage { get<Type>(key: string): Promise<Type | void>; put<Type>(key: string, value: Type): Promise<void>; delete(key: string): Promise<void>; }