Typescript types for the Dynatrace RUM JavaScript dtrum.* API
Keep in mind that when the RUM Classic JavaScript is updated, this type package might not provide accurate types.
Version: 1.333.3
"typeRoots" in tsconfig.json under "compilerOptions"
"typeRoots": ["./node_modules/@types", "./node_modules/@dynatrace/"],
`Usage examples
Type inference works out of the box for dtrum calls.
`
if (window.dtrum) {
window.dtrum.identifyUser("exampleId");
} else {
// handle missing dtrum api
}
`In case some specific types or enums are needed, you can import them from
dtrum types library.
`
import { ActionNameResult } from '@dynatrace/dtrum-api-types';if (window.dtrum) {
const result = window.dtrum.actionName("exampleName");
switch(result) {
case ActionNameResult.SUCCESS:
// handle success...
break;
case ActionNameResult.ACTION_NOT_FOUND:
// handle action not found...
break;
//etc...
}
} else {
// handle missing dtrum api
}
``