Files
stocca-tre/server/StoccaTreRequest.ts
2022-06-30 08:33:13 +02:00

8 lines
175 B
TypeScript

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