From d21f340a46460588cc31663bc85440e78be112f6 Mon Sep 17 00:00:00 2001 From: Luis Covarrubias Date: Wed, 11 Feb 2026 16:34:36 -0800 Subject: [PATCH] docs(bitgo): add JSDoc module comment to main entry point Add a JSDoc comment to the top of modules/bitgo/src/index.ts describing it as the main entry point for the BitGo SDK. BTC-0000 --- modules/bitgo/src/index.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/modules/bitgo/src/index.ts b/modules/bitgo/src/index.ts index ad43f48b50..383313fe29 100644 --- a/modules/bitgo/src/index.ts +++ b/modules/bitgo/src/index.ts @@ -1,8 +1,16 @@ /** * @prettier */ -// -// index.js - Module definition for BitGoJS + +/** + * Main entry point for the BitGo SDK. + * + * This module re-exports the core BitGo functionality including authentication, + * wallet management, coin implementations, and cryptographic utilities. + * + * @module bitgo + */ + // // Copyright 2022, BitGo, Inc. All Rights Reserved. //