Urara-Blog/node_modules/.pnpm-store/v3/files/81/4ba4d85e86f7ef110ffb61656c8b7671a8bd6b03b5064819ff9cd311bce7644b7c0ed0bdd9964c700bdd7c65c1bf6744081548012a78cf798bd23fe6dfd351
2022-08-14 01:14:53 +08:00

11 lines
410 B
Text

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;