@augment-vir/node
Version:
A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.
10 lines (9 loc) • 362 B
TypeScript
export declare function updateImage(
/** @example 'alpine:3.20.2' */
imageName: string, platform?: string): Promise<void>;
export declare function isImageInLocalRegistry(
/** @example 'alpine:3.20.2' */
imageName: string): Promise<boolean>;
export declare function removeImageFromLocalRegistry(
/** @example 'alpine:3.20.2' */
imageName: string): Promise<void>;