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;
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
export * from "./fastify";
|
||||
export * from "./homeassistant";
|
||||
export * as Logger from "./logger";
|
||||
export * from "./tidal";
|
||||
|
||||
Reference in New Issue
Block a user