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

View File

@@ -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;

View File

@@ -1,3 +1,4 @@
export * from "./fastify";
export * from "./homeassistant";
export * as Logger from "./logger";
export * from "./tidal";