hexo/node_modules/ajv/dist/vocabularies/validation/enum.d.ts

9 lines
257 B
TypeScript

import type { CodeKeywordDefinition, ErrorObject } from "../../types";
export declare type EnumError = ErrorObject<"enum", {
allowedValues: any[];
}, any[] | {
$data: string;
}>;
declare const def: CodeKeywordDefinition;
export default def;