import { Version } from'./Version';
/** The result of fetching a version from the package manager, which may include an error. Used to pass errors back up the call chain for better reporting. */exportinterfaceVersionResult {
version?: Version | null;
error?: string;
time?: string;
}