Generic Commit; Most likely a fix or small feature
This commit is contained in:
@@ -1,10 +1,14 @@
|
||||
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 abstract class BaseClient {
|
||||
private axiosInstance: AxiosInstance;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user