(event: Event, hint?: EventHint)
| 55 | * @returns the id of the captured event. |
| 56 | */ |
| 57 | export function captureEvent(event: Event, hint?: EventHint): string { |
| 58 | return getCurrentScope().captureEvent(event, hint); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Sets context data with the given name. |
nothing calls this directly
no test coverage detected