import { HttpMethod } from './http.enum'; export interface HttpRequestParams { /** Request method. */ method?: HttpMethod; /** Object containing replacement string for path variables. */ replacements?: Record; /** Request query params with array joining support. */ query?: Record; /** Request body to be sent as JSON. */ json?: any; }