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.

8 lines (7 loc) 343 B
import type { OAuth2TokenResponse } from '../interfaces'; /** Requests the token based on the code that was received previously */ export declare function requestOauth2Token( /** Endpoint for authenticating via SSO */ oauthUrl: string, /** The SSO client ID */ clientId: string, code: string, callbackUrl: URL): Promise<OAuth2TokenResponse>;