@asgardeo/browser 0.2.7 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@
15
15
  * specific language governing permissions and limitations
16
16
  * under the License.
17
17
  */
18
- import { AxiosRequestConfig } from 'axios';
18
+ import type { AxiosRequestConfig } from 'axios';
19
19
  import { HttpClientInstance, HttpError, HttpResponse } from '.';
20
20
  import { SPACustomGrantConfig } from '../..';
21
21
  export interface HttpClient {
@@ -38,5 +38,5 @@ export interface HttpRequestConfig extends AxiosRequestConfig, Omit<Request, 'he
38
38
  shouldAttachIDPAccessToken?: boolean;
39
39
  startTimeInMs?: number;
40
40
  }
41
- export { AxiosResponse as HttpResponse, Method as HttpMethod, AxiosRequestTransformer as HttpRequestTransformer, AxiosResponseTransformer as HttpResponseTransformer, AxiosAdapter as HttpAdapter, AxiosBasicCredentials as HttpBasicCredentials, ResponseType, AxiosProxyConfig as HttpProxyConfig, CancelToken, AxiosError as HttpError, AxiosPromise as HttpPromise, AxiosInstance as HttpInstance, } from 'axios';
41
+ export type { AxiosResponse as HttpResponse, Method as HttpMethod, AxiosRequestTransformer as HttpRequestTransformer, AxiosResponseTransformer as HttpResponseTransformer, AxiosAdapter as HttpAdapter, AxiosBasicCredentials as HttpBasicCredentials, ResponseType, AxiosProxyConfig as HttpProxyConfig, CancelToken, AxiosError as HttpError, AxiosPromise as HttpPromise, AxiosInstance as HttpInstance, } from 'axios';
42
42
  export { HttpClientInstance } from '../http-client';