From 49bb13738888d4abc48f2b15afbe68d268a6f6a3 Mon Sep 17 00:00:00 2001 From: Darius Date: Mon, 17 Nov 2025 23:49:48 +0100 Subject: [PATCH] Generic Commit; Most likely a fix or small feature --- dist/index.d.ts | 1 + dist/index.d.ts.map | 2 +- dist/index.js | 3 ++- src/index.ts | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/dist/index.d.ts b/dist/index.d.ts index aae42b9..a383e90 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1,5 +1,6 @@ export * from "./homeassistant"; export * as Logger from "./logger"; export * from "./tidal"; +export * as TimeSpan from "./timespan"; export * as Utility from "./utility"; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/dist/index.d.ts.map b/dist/index.d.ts.map index 6cad85d..544c5e1 100644 --- a/dist/index.d.ts.map +++ b/dist/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,cAAc,SAAS,CAAC;AACxB,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,cAAc,SAAS,CAAC;AACxB,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC"} \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index 3ed2002..82bf8bf 100644 --- a/dist/index.js +++ b/dist/index.js @@ -36,8 +36,9 @@ var __importStar = (this && this.__importStar) || (function () { }; })(); Object.defineProperty(exports, "__esModule", { value: true }); -exports.Utility = exports.Logger = void 0; +exports.Utility = exports.TimeSpan = exports.Logger = void 0; __exportStar(require("./homeassistant"), exports); exports.Logger = __importStar(require("./logger")); __exportStar(require("./tidal"), exports); +exports.TimeSpan = __importStar(require("./timespan")); exports.Utility = __importStar(require("./utility")); diff --git a/src/index.ts b/src/index.ts index f6a070e..4ac3db9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,5 @@ export * from "./homeassistant"; export * as Logger from "./logger"; export * from "./tidal"; +export * as TimeSpan from "./timespan"; export * as Utility from "./utility";