UNPKG

itty-router

Version:

A tiny, zero-dependency router, designed to make beautiful APIs in any environment.

11 lines (10 loc) 206 B
export type IRequestStrict = { route: string; params: { [key: string]: string; }; query: { [key: string]: string | string[] | undefined; }; proxy?: any; } & Request;