astro-ghostcms/.pnpm-store/v3/files/9c/14b90c3251f8b802892b3726f03...

10 lines
299 B
Plaintext

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.RangeOptions): boolean;
export = subset;