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.
15 lines (14 loc) • 500 B
TypeScript
import type { Token } from './hub-communication';
/** Publish command action options */
export type PublishCommandActionOptions = {
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(publishOptions: PublishCommandActionOptions, shouldBuild: boolean): Promise<void>;