Files
est-frame/node_modules/ajv/dist/compile/ref_error.d.ts
2025-10-22 05:38:27 +00:00

7 lines
252 B
TypeScript
Executable File

import type { UriResolver } from "../types";
export default class MissingRefError extends Error {
readonly missingRef: string;
readonly missingSchema: string;
constructor(resolver: UriResolver, baseId: string, ref: string, msg?: string);
}