UNPKG

@stacksjs/launchpad

Version:
11 lines 331 B
// Helper to parse a version string into a Version object export declare function parseVersion(versionStr: string): Version | null; // Simple class to represent semantic versions export declare class Version { raw: string; major: number; minor: number; patch: number; constructor(version: string); toString(): string; }