(options: NodeOptions | undefined = {})
| 62 | * Initialize Sentry for Node. |
| 63 | */ |
| 64 | export function init(options: NodeOptions | undefined = {}): NodeClient | undefined { |
| 65 | return _init(options, getDefaultIntegrations); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Internal initialization function. |
no test coverage detected