mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 23:09:13 +08:00
6 lines
252 B
Text
6 lines
252 B
Text
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);
|
|
}
|