(options: NodeOptions | undefined = {})
| 78 | * Initialize Sentry for Node. |
| 79 | */ |
| 80 | export function init(options: NodeOptions | undefined = {}): NodeClient | undefined { |
| 81 | return _init(options, getDefaultIntegrations); |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Initialize Sentry for Node, without any integrations added by default. |
no test coverage detected