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.

17 lines (16 loc) 704 B
import type { ResolvedCliOptions } from '../utils/config/cli-options'; import type { Token } from './hub-manager-communication'; import type { AppSigningData } from '../utils/get-pk-and-certificatechain'; /** Publish command action options */ export type PublishCommandActionOptions = { hubManager: { /** The authentication token issued by the hub manager */ token: Token; channels?: string[]; }; /** Path to a file containing the release notes */ releaseNotesFile?: string | undefined; appSigning?: AppSigningData | true; }; /** The publish command */ export declare function publish(options: ResolvedCliOptions & PublishCommandActionOptions): Promise<void>;