Dynatrace Dtrum Api Types
This package contains the Typescript type information for the Dtrum Api of the javascript agent.
Keep in mind that when the javascript agent is updated, this type package might not provide accurate types.
Version: 1.235.5
Installation
npm install --save-dev @dynatrace/dtrum-api-types
Configuration
Make sure to add these paths to "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 { ResourceSummaryTypes } from '@dynatrace/dtrum-api-types';
if (window.dtrum) {
window.dtrum.startThirdParty(ResourceSummaryTypes.IMAGES, "..../img.jpg");
} else {
// handle missing dtrum api
}