class SemVerimport { SemVer } from "https://dotland.deno.dev/std@0.181.0/semver/mod.ts"; ConstructorsnewSemVer(version: string | SemVer, options?: Options)Propertiesbuild: ReadonlyArray<string>major: numberminor: numberoptions: Optionspatch: numberprerelease: Array<string | number>raw: stringversion: stringMethodscompare(other: string | SemVer): 1 | 0 | -1compareBuild(other: string | SemVer): 1 | 0 | -1compareMain(other: string | SemVer): 1 | 0 | -1comparePre(other: string | SemVer): 1 | 0 | -1format(opts?: { style?: | "release" | "prerelease" | "build" | "full"; }): stringincrement(release: ReleaseType,identifier?: string,metadata?: string,): SemVertoString(): string