forked from olcxjas-softworks/LarpixClient
update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
16
electron/node_modules/ajv/dist/vocabularies/validation/index.d.ts
generated
vendored
Normal file
16
electron/node_modules/ajv/dist/vocabularies/validation/index.d.ts
generated
vendored
Normal 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