UNPKG

299 BTypeScriptView Raw
1import Range = require('../classes/range');
2import semver = require('../index');
3
4/**
5 * Return true if the subRange range is entirely contained by the superRange range.
6 */
7declare function subset(sub: string | Range, dom: string | Range, options?: semver.RangeOptions): boolean;
8
9export = subset;