UNPKG

kronosapi

Version:

Fast web api with Bun

9 lines (7 loc) 204 B
export interface RouteArray { [GET: string]: string[]; [POST: string]: string[]; [PUT: string]: string[]; [DELETE: string]: string[]; } export type RouteType = 'GET' | 'POST' | 'PUT' | 'DELETE';