import { DATA_TYPE } from '../enums/dataType.js'; import { RESPONSE_TYPE } from '../enums/responseTypes.js'; export interface IRequestParams { method: string; url: string; data?: T; headers?: Record; responseType?: RESPONSE_TYPE; dataType?: DATA_TYPE; } //# sourceMappingURL=IRequestParams.d.ts.map