stoplightio/json

View on GitHub
src/resolvers/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { JsonPath } from '@stoplight/types';

export type ResolvedRef<Source extends string | null = null> = {
  source: Source;
  location: JsonPath;
  value: unknown;
};