Warning: chmod(): Operation not permitted in /var/www/alexvillarreal/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php on line 8
403WebShell
403Webshell
Server IP : 74.208.250.37  /  Your IP : 216.73.216.114
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64
User : miferval ( 1000)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/share/node_modules/schema-utils/declarations/util/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/node_modules/schema-utils/declarations/util/Range.d.ts
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;

Youez - 2016 - github.com/yon3zu
LinuXploit