2026-01-27 17:18:21 +00:00
|
|
|
import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types";
|
|
|
|
|
export type UnevaluatedItemsError = ErrorObject<"unevaluatedItems", {
|
|
|
|
|
limit: number;
|
|
|
|
|
}, AnySchema>;
|
|
|
|
|
declare const def: CodeKeywordDefinition;
|
|
|
|
|
export default def;
|