UNPKG

@umijs/deps

Version:

[![Install size](https://badgen.net/packagephobia/install/@umijs/deps)](https://packagephobia.now.sh/result?p=@umijs/deps)

14 lines (11 loc) 309 B
import Range = require('../classes/range'); import semver = require('../index'); /** * Return true if the subRange range is entirely contained by the superRange range. */ declare function subset( sub: string | Range, dom: string | Range, options?: semver.Options, ): boolean; export = subset;