persona-community-5/.pnpm-store/v3/files/86/810ec4874180ecaf78ea05c8ab5410ca905e3c3fd597c92532e176e359e5511a112991b00f4ee32a79c47c4b281e50ab280022161cf8b55c0147410ee2f896
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

13 lines
437 B
Plaintext

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