astro-ghostcms/.pnpm-store/v3/files/01/af2d9b38f855b21955594b94fd0...

10 lines
232 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
import SemVer = require("../classes/semver");
import semver = require("../index");
/**
* v1 > v2
*/
declare function gt(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean;
export = gt;