persona-community-5/.pnpm-store/v3/files/bf/00f6ba219b4bd509256868ad9d727ff056bc8e3fe987fe66c25a95f25dbba89d01c9a90029209ba8bdaa5578850305085cc591d57cf9560e99f034818d076c
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

8 lines
249 B
Plaintext

import type { ErrorObject } from "../types";
export default class ValidationError extends Error {
readonly errors: Partial<ErrorObject>[];
readonly ajv: true;
readonly validation: true;
constructor(errors: Partial<ErrorObject>[]);
}