From 33ebc99bae9a37657a632997f4da0aa08488fad9 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 08:21:01 +0530 Subject: [PATCH] feat: Updated sdks/ts/src/managers/base.ts (#243) Co-authored-by: sweep-ai[bot] <128439645+sweep-ai[bot]@users.noreply.github.com> --- sdks/ts/src/managers/base.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sdks/ts/src/managers/base.ts b/sdks/ts/src/managers/base.ts index 2512a27c3..7dee6540f 100644 --- a/sdks/ts/src/managers/base.ts +++ b/sdks/ts/src/managers/base.ts @@ -1,5 +1,13 @@ import { JulepApiClient } from "../api/JulepApiClient"; +/** + * BaseManager serves as the base class for all manager classes that interact with the Julep API. + * It provides common functionality needed for API interactions. + */ export class BaseManager { + /** + * Constructs a new instance of BaseManager. + * @param apiClient The JulepApiClient instance used for API interactions. + */ constructor(public apiClient: JulepApiClient) {} }