UNPKG

@jkcfg/kubernetes

Version:
16 lines (15 loc) 388 B
interface VersionInfo { tag?: string; digest?: string; } declare class ImageReference { domain?: string; path: string; tag?: string; digest?: string; constructor(domain: string | undefined, path: string, version?: VersionInfo); readonly image: string; toString(): string; static fromString(s: string): ImageReference; } export { ImageReference, };