From 842d03966ce7d01b07ac9af86e4108fd2446456d Mon Sep 17 00:00:00 2001 From: Quentin Date: Sat, 28 Dec 2024 17:58:11 +0100 Subject: [PATCH] Remove unused type: AxiosHttpResponse --- .../shared/http/infrastructure/secondary/AxiosHttp.ts.mustache | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/resources/generator/client/vue/webapp/app/shared/http/infrastructure/secondary/AxiosHttp.ts.mustache b/src/main/resources/generator/client/vue/webapp/app/shared/http/infrastructure/secondary/AxiosHttp.ts.mustache index ec1033a2020..b8153dc921d 100644 --- a/src/main/resources/generator/client/vue/webapp/app/shared/http/infrastructure/secondary/AxiosHttp.ts.mustache +++ b/src/main/resources/generator/client/vue/webapp/app/shared/http/infrastructure/secondary/AxiosHttp.ts.mustache @@ -1,7 +1,5 @@ import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; -export type AxiosHttpResponse = AxiosResponse; - export class AxiosHttp { constructor(private readonly axiosInstance: AxiosInstance) {}