export interface RouteArray {
  [GET: string]: string[];
  [POST: string]: string[];
  [PUT: string]: string[];
  [DELETE: string]: string[];
}

export type RouteType = 'GET' | 'POST' | 'PUT' | 'DELETE';
