persona-community-5/.pnpm-store/v3/files/f3/28a202bd66d4bcc99347e679e4d9baa778d3cd52301811059f43f4d95c531080ababbaebfb79e3a77ff216d461049a041b3e48ee8e78a3c38f7f00939ffd27
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

11 lines
458 B
Plaintext

import type { Location } from '../ref-utils';
import type { ErrorObject } from '@redocly/ajv/dist/2020';
import type { ResolveFn } from '../walk';
export declare function releaseAjvInstance(): void;
export declare function validateJsonSchema(data: any, schema: any, schemaLoc: Location, instancePath: string, resolve: ResolveFn, allowAdditionalProperties: boolean): {
valid: boolean;
errors: (ErrorObject & {
suggest?: string[];
})[];
};