UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

13 lines (12 loc) 433 B
import type { ErrorObject } from "../types"; export declare class ValidationError extends Error { readonly errors: Partial<ErrorObject>[]; readonly ajv: true; readonly validation: true; constructor(errors: Partial<ErrorObject>[]); } export declare class MissingRefError extends Error { readonly missingRef: string; readonly missingSchema: string; constructor(baseId: string, ref: string, msg?: string); }