bpms_site/.svn/pristine/28/28c976ae4c12d65c3a3d06ce18ae0304ea614ac0.svn-base
2025-11-02 16:38:49 +03:30

11 lines
329 B
Plaintext

export interface VersionInfo {
installed: string;
staleness: 'fresh' | 'stale-patch' | 'stale-minor' | 'stale-major' | 'stale-prerelease' | 'newer-than-npm' | 'unknown';
expected?: string;
}
export declare function parseVersionInfo(o: {
installed: string;
latest: string;
canary: string;
}): VersionInfo;