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