import $RefParser = require('json-schema-ref-parser') import {JSONSchema} from './types/JSONSchema' import {log} from './utils' export async function dereference( schema: JSONSchema, {cwd, $refOptions}: {cwd: string; $refOptions: $RefParser.Options} ): Promise { log('green', 'dereferencer', 'Dereferencing input schema:', cwd, schema) const parser = new $RefParser() return parser.dereference(cwd, schema, $refOptions) }