import { RequestInterceptor, ResponseInterceptor } from './interceptors'; import { GenericObject } from './object'; export interface RequestSettings { url?: string; method?: string; headers?: GenericObject; } export interface ServiceCallConfig { key?: string; request?: RequestSettings; requestInterceptor?: RequestInterceptor; responseInterceptor?: ResponseInterceptor; } //# sourceMappingURL=requestSettings.d.ts.map