UNPKG

dereference-json-schema

Version:

Dereference $ref pointers in JSONSchema or OpenAPI documents.

6 lines (5 loc) 202 B
import { JSONSchema } from './types'; /** * Resolves a $ref pointer in a schema and returns the referenced value. */ export declare const resolveRefSync: (schema: JSONSchema, ref: string) => unknown;