(props: Record<string, unknown>)
| 113 | } |
| 114 | |
| 115 | register(props: Record<string, unknown>) { |
| 116 | if (this.enabled) Object.assign(this.superProps, props); |
| 117 | } |
| 118 | |
| 119 | capture(event: string, properties: Record<string, unknown> = {}) { |
| 120 | if (!this.enabled || !this.client) return; |