Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 17:11:14 +01:00
parent a35a3e7ecb
commit a835f220e2
7 changed files with 14 additions and 4 deletions

5
dist/fastify.d.ts vendored
View File

@@ -1,8 +1,11 @@
import { AxiosInstance } from "axios";
import type { AxiosInstance } from "axios";
export type ServiceResult<T = unknown> = {
result: T;
successful: boolean;
};
export type API_Error = {
error: string;
};
export declare abstract class BaseClient {
private axiosInstance;
constructor(axiosInstance: AxiosInstance);