Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 17:34:15 +01:00
parent c3f0fd84ac
commit 2f8f3ea017

View File

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