UNPKG

dtrum-react-kit

Version:

Dynatrace tools and react hooks collection

13 lines (8 loc) 265 B
export const sendDtrumAction = (actionName: string, callback?: () => void) => { const { dtrum = undefined } = window; if (!dtrum) return callback?.(); const action = dtrum.enterAction(actionName); callback?.(); dtrum.leaveAction(action); return; };