We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dbd4e2 commit 71ac5c4Copy full SHA for 71ac5c4
1 file changed
src/core/classes/IterableAuthManager.ts
@@ -6,9 +6,7 @@ import { IterableAuthResponse } from './IterableAuthResponse';
6
*
7
* @example
8
* ```typescript
9
- * const config = new IterableConfig();
10
- * const logger = new IterableLogger(config);
11
- * const authManager = new IterableAuthManager(logger);
+ * const authManager = new IterableAuthManager();
12
* ```
13
*/
14
export class IterableAuthManager {
@@ -31,6 +29,12 @@ export class IterableAuthManager {
31
29
* Pass along an auth token to the SDK.
32
30
33
* @param authToken - The auth token to pass along
+ *
+ * @example
34
+ * ```typescript
35
36
+ * authManager.passAlongAuthToken(MY_AUTH_TOKEN);
37
+ * ```
38
39
passAlongAuthToken(
40
authToken: string | null | undefined
0 commit comments