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