for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* @package admin
*/
import type { AxiosInstance } from 'axios';
const HttpClient = Shopware.Classes._private.HttpFactory;
// eslint-disable-next-line sw-deprecation-rules/private-feature-declarations
export default function initializeHttpClient(): AxiosInstance {
return HttpClient(Shopware.Context.api) as unknown as AxiosInstance;
}