Files
stocca-tre/server/StoccaTreRequest.ts
2022-06-29 08:24:00 +02:00

7 lines
150 B
TypeScript

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