Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
16
my-app/node_modules/ajv/dist/vocabularies/validation/index.d.ts
generated
vendored
Executable file
16
my-app/node_modules/ajv/dist/vocabularies/validation/index.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,16 @@
|
|||
import type { ErrorObject, Vocabulary } from "../../types";
|
||||
import { LimitNumberError } from "./limitNumber";
|
||||
import { MultipleOfError } from "./multipleOf";
|
||||
import { PatternError } from "./pattern";
|
||||
import { RequiredError } from "./required";
|
||||
import { UniqueItemsError } from "./uniqueItems";
|
||||
import { ConstError } from "./const";
|
||||
import { EnumError } from "./enum";
|
||||
declare const validation: Vocabulary;
|
||||
export default validation;
|
||||
type LimitError = ErrorObject<"maxItems" | "minItems" | "minProperties" | "maxProperties" | "minLength" | "maxLength", {
|
||||
limit: number;
|
||||
}, number | {
|
||||
$data: string;
|
||||
}>;
|
||||
export type ValidationKeywordError = LimitError | LimitNumberError | MultipleOfError | PatternError | RequiredError | UniqueItemsError | ConstError | EnumError;
|
Loading…
Add table
Add a link
Reference in a new issue