Skip to content

Commit 9ee9556

Browse files
committed
fix: address one more api extractor warning
I need to include the useSession docstring twice, apparently?
1 parent 6dd52c1 commit 9ee9556

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/react/etc/components-react.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ export function useSession(tokenSource: TokenSourceConfigurable, options?: UseSe
12071207

12081208
// Warning: (ae-forgotten-export) The symbol "UseSessionFixedOptions" needs to be exported by the entry point index.docs.d.ts
12091209
//
1210-
// @public (undocumented)
1210+
// @public
12111211
export function useSession(tokenSource: TokenSourceFixed, options?: UseSessionFixedOptions): UseSessionReturn;
12121212

12131213
// @public

packages/react/src/hooks/useSession.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@ export function useSession(
149149
tokenSource: TokenSourceConfigurable,
150150
options?: UseSessionConfigurableOptions,
151151
): UseSessionReturn;
152+
/**
153+
* A Session represents a manages connection to a Room which can contain Agents.
154+
* @public
155+
*/
152156
export function useSession(
153157
tokenSource: TokenSourceFixed,
154158
options?: UseSessionFixedOptions,

0 commit comments

Comments
 (0)