NET-Web-API-w-Angular/my-app/node_modules/ajv/dist/vocabularies/validation/enum.d.ts

8 lines
241 B
TypeScript
Executable file

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