UNPKG

252 BTypeScriptView Raw
1import type { UriResolver } from "../types";
2export default class MissingRefError extends Error {
3 readonly missingRef: string;
4 readonly missingSchema: string;
5 constructor(resolver: UriResolver, baseId: string, ref: string, msg?: string);
6}