@dynatrace/dtrum-api-types
TypeScript icon, indicating that this package has built-in type declarations

1.307.0 • Public • Published

Dynatrace Dtrum Api Types

This package contains the Typescript type information for the dtrum.* API of the RUM JavaScript.

Keep in mind that when the RUM JavaScript is updated, this type package might not provide accurate types. Version: 1.307.0

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 { 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
}

Package Sidebar

Install

npm i @dynatrace/dtrum-api-types

Weekly Downloads

15,291

Version

1.307.0

License

SEE LICENSE IN LICENSE.md

Unpacked Size

29.1 kB

Total Files

4

Last publish

Collaborators

  • dynatrace-nodejs
  • kamtschatka
  • dyladan