(event: string, props?: TEventProps)
| 666 | } |
| 667 | |
| 668 | function recordTEvent(event: string, props?: TEventProps) { |
| 669 | if (isPreviewWindow()) return; |
| 670 | if (props == null) { |
| 671 | props = {}; |
| 672 | } |
| 673 | RpcApi.RecordTEventCommand(TabRpcClient, { event, props }, { noresponse: true }); |
| 674 | } |
| 675 | |
| 676 | export { |
| 677 | atoms, |
no test coverage detected