Your IP : 216.73.216.43


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/ajv/dist/vocabularies/validation/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts

import type { CodeKeywordDefinition, ErrorObject } from "../../types";
declare type Kwd = "maximum" | "minimum" | "exclusiveMaximum" | "exclusiveMinimum";
declare type Comparison = "<=" | ">=" | "<" | ">";
export declare type LimitNumberError = ErrorObject<Kwd, {
    limit: number;
    comparison: Comparison;
}, number | {
    $data: string;
}>;
declare const def: CodeKeywordDefinition;
export default def;