MCPcopy Index your code
hub / github.com/TanStack/devtools / ParsedVersion

Interface ParsedVersion

packages/devtools/src/tabs/semver-utils.ts:6–11  ·  view source on GitHub ↗

* Simple semver utilities for version comparison * Handles basic semver format: major.minor.patch

Source from the content-addressed store, hash-verified

4 */
5
6interface ParsedVersion {
7 major: number
8 minor: number
9 patch: number
10 raw: string
11}
12
13/**
14 * Parse a semver string into components

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected