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.

10 lines (9 loc) 446 B
import type * as Zip from 'adm-zip'; /** 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, id: string): Promise<Zip>; /** Locate the position/index of EOCD within a zip file buffer using ENDSIG */ export declare function getEocdPosition(archive: Buffer): number;