This commit is contained in:
AdisakKanthawilang 2024-08-01 14:31:32 +07:00
parent 9eb539b451
commit 61ec81687c
8 changed files with 365 additions and 358 deletions

View file

@ -11,8 +11,8 @@ export type LogSequence = {
description: string;
query?: string;
request?: {
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
url: string;
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
url?: string;
payload?: string;
response?: string;
};