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.

12 lines (11 loc) 571 B
import type * as Zip from 'adm-zip'; import { type ResolvedCliOptions } from '../utils/config/cli-options'; export declare const EOCD_SIZE = 22; /** Get bearer token using client id and client secret */ export declare function getAuthorization(): Promise<string>; /** Sign archive with certificate */ export declare function signArchiveNew( /** The archive to sign */ archive: Zip, options: ResolvedCliOptions): Promise<Zip>; /** Locate the position/index of EOCD within a zip file buffer using ENDSIG */ export declare function getEocdPosition(archive: Buffer): number;