astro-ghostcms/.pnpm-store/v3/files/61/6b91bd301648ffc3287f349856c...

9 lines
290 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import semver = require("../index");
/**
* Returns cleaned (removed leading/trailing whitespace, remove '=v' prefix) and parsed version, or null if version is invalid.
*/
declare function clean(version: string, optionsOrLoose?: boolean | semver.Options): string | null;
export = clean;