export type HttpRequest = { body?: T; params?: any; query?: any; headers?: any; }; export type HttpResponse = { statusCode: number; body: any; };