persona-community-5/.pnpm-store/v3/files/fd/7ad47aeef1a9e6f2b4215cd2cae2dfc94d7f2bd2be32244d755b3557b662c8634cf28712dd3522929fa0dff73c3b959337b0c972a5db7790d32098bc419dd1
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

7 lines
252 B
Plaintext

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);
}