(name: string, context: { [key: string]: unknown } | null)
| 64 | * @param context Any kind of data. This data will be normalized. |
| 65 | */ |
| 66 | export function setContext(name: string, context: { [key: string]: unknown } | null): void { |
| 67 | getIsolationScope().setContext(name, context); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Set an object that will be merged sent as extra data with the event. |
no test coverage detected