export type HttpMethod = "POST" | "GET" | "PUT" | "DELETE"; export default interface StoccaTreRequest { method: HttpMethod, route: string, body: string | null, }