UNPKG

dt-app

Version:

The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.

7 lines (6 loc) 414 B
import type { TokenContext, TokenFileContent } from './get-bearer-token'; import { TokenValidity } from './get-bearer-token'; /** Validates the token */ export declare function validateToken(bearerTokenContext: TokenContext): Promise<TokenValidity>; /** Writes all the token information to the tokens.json file */ export declare function writeTokenFile(tokenFilePath: string, fileContent: TokenFileContent): void;