gluegun
Version:
A delightful toolkit for building Node-powered CLIs.
9 lines (8 loc) • 307 B
TypeScript
import { GluegunSemver } from './semver-types';
/**
* We're replicating the interface of semver in order to
* "lazy load" the package only if and when we actually are asked for it.
* This results in a significant speed increase.
*/
declare const semver: GluegunSemver;
export { semver, GluegunSemver };