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.

20 lines (19 loc) 705 B
import type { ResolvedCliOptions } from '../utils/config/cli-options'; import type { Token } from './hub-communication'; /** Publish command action options */ export type PublishCommandActionOptions = { hubManager: { /** The authentication token issued by the hub manager */ channels?: string[]; }; hubConsole: { autoApprove?: boolean; channelId?: string; }; token: Token; /** Path to a file containing the release notes */ releaseNotesFile?: string | undefined; appSigning?: true; }; /** The publish command */ export declare function publish(options: ResolvedCliOptions & PublishCommandActionOptions, shouldBuild: boolean): Promise<void>;