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) {} }