File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,14 @@ export interface BaseBrowserOptions {
23
23
denyUrls ?: Array < string | RegExp > ;
24
24
}
25
25
26
+ /**
27
+ * Configuration options for the Sentry Browser SDK.
28
+ * @see @sentry /types Options for more information.
29
+ */
26
30
export interface BrowserOptions extends Options , BaseBrowserOptions { }
27
31
28
32
/**
29
- * Configuration options for the Sentry Browser SDK.
33
+ * Configuration options for the Sentry Browser SDK Client class
30
34
* @see BrowserClient for more information.
31
35
*/
32
36
export interface BrowserClientOptions extends ClientOptions , BaseBrowserOptions { }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { NodeClientOptions } from './types';
10
10
/**
11
11
* The Sentry Node SDK Client.
12
12
*
13
- * @see NodeOptions for documentation on configuration options.
13
+ * @see NodeClientOptions for documentation on configuration options.
14
14
* @see SentryClient for usage documentation.
15
15
*/
16
16
export class NodeClient extends BaseClient < NodeClientOptions > {
Original file line number Diff line number Diff line change @@ -17,10 +17,14 @@ export interface BaseNodeOptions {
17
17
onFatalError ?( error : Error ) : void ;
18
18
}
19
19
20
+ /**
21
+ * Configuration options for the Sentry Node SDK
22
+ * @see @sentry /types Options for more information.
23
+ */
20
24
export interface NodeOptions extends Options , BaseNodeOptions { }
21
25
22
26
/**
23
- * Configuration options for the Sentry Node SDK.
27
+ * Configuration options for the Sentry Node SDK Client class
24
28
* @see NodeClient for more information.
25
29
*/
26
30
export interface NodeClientOptions extends ClientOptions , BaseNodeOptions { }
You can’t perform that action at this time.
0 commit comments