UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

12 lines (11 loc) 410 B
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;