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.
8 lines (7 loc) • 468 B
TypeScript
import type { UpdateReference } from './types/types';
/** Get a list of packages with their latest version that should be updated */
export declare function getLatestPackageVersions(
/** The project root path */
root: string): Promise<Record<string, UpdateReference>>;
/** Returns true if the package is dt-app or belongs to the @dynatrace namespace and has a valid semver version */
export declare function isValidDtDependency(dependency: [string, string]): boolean;