UNPKG

jsfast

Version:

Fastjs(jsfast) is a useful, lightweight JavaScript library for any types of project.

9 lines (8 loc) 282 B
export interface RequestData { [key: string]: any; } export interface FastjsHeaders extends Headers { toArray(): Array<[string, string]>; toObject(): Record<string, string>; } export type RequestMethod = "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";