UNPKG

dereference-json-schema

Version:

Dereference $ref pointers in JSONSchema or OpenAPI documents.

6 lines (5 loc) 255 B
import type { DereferencedJSONSchema, JSONSchema } from './types'; /** * Resolves all $ref pointers in a schema and returns a new schema without any $ref pointers. */ export declare const dereferenceSync: (schema: JSONSchema) => DereferencedJSONSchema;