UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

7 lines 237 B
/** * Check if a string is a valid semantic version (SemVer). * * @param str - The string to check * @returns True if the string is a valid semantic version, false otherwise */ export declare function isSemVer(str: string): boolean;