1
2
3
4
5
6
7
8
9
10
11
| import type { CodeKeywordDefinition, ErrorObject } from "../../types";
| type Kwd = "maximum" | "minimum" | "exclusiveMaximum" | "exclusiveMinimum";
| type Comparison = "<=" | ">=" | "<" | ">";
| export type LimitNumberError = ErrorObject<Kwd, {
| limit: number;
| comparison: Comparison;
| }, number | {
| $data: string;
| }>;
| declare const def: CodeKeywordDefinition;
| export default def;
|
|