fix(core): update

This commit is contained in:
2024-01-07 14:50:14 +01:00
parent a710473d33
commit c9688159e5
8 changed files with 97 additions and 17 deletions

View File

@ -1,11 +1,11 @@
export type TResponseModifier = <T>(responseArg: {
headers: { [header: string]: number | string | string[] | undefined };
path: string;
responseContent: string;
responseContent: Buffer;
travelData?: T;
}) => Promise<{
headers: { [header: string]: number | string | string[] | undefined };
path: string;
responseContent: string;
responseContent: Buffer;
travelData?: T;
}>;