@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
11 lines (10 loc) • 341 B
TypeScript
export interface ParsedImageReference {
registry: string;
repository: string;
tag: string;
}
export declare class ImageReference {
private static readonly IMAGE_TAG_REGEX;
static validateImageTag(tag: string, originalValue: string): string;
static parseImageReference(imageReference: string): ParsedImageReference;
}