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.
10 lines (9 loc) • 334 B
TypeScript
import type { OAuth2TokenResponse } from '../interfaces';
/** Get new access_token using refresh_token */
export declare function refreshOauth2Token(
/** Endpoint for authenticating via SSO */
oauthUrl: string,
/** The SSO client ID */
clientId: string,
/** The refresh token */
refreshToken: string): Promise<OAuth2TokenResponse>;