Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 17:35:58 +01:00
parent 25ff0b9903
commit 1d4ade717a
3 changed files with 10 additions and 3 deletions

5
dist/fastify.d.ts vendored
View File

@@ -3,9 +3,10 @@ export type ServiceResult<T = unknown> = {
result: T;
successful: boolean;
};
export type API_Error = {
export declare class API_Error {
error: string;
};
constructor(error: string);
}
export declare abstract class BaseClient {
private axiosInstance;
constructor(axiosInstance: AxiosInstance);