Options
All
  • Public
  • Public/Protected
  • All
Menu

The object returned from await resolver.resolve()

Hierarchy

  • IResolveResult

Index

Properties

Properties

errors

errors: IResolveError[]

Any errors that occured during the resolution process.

refMap

refMap: object

A map of every single reference in source, and where it points, ie:

{
  "#/source/user": "#/models/user",
  "#/source/card": "file:///api.json/#models/card"
}

Type declaration

  • [source: string]: string

result

result: any

The original source object, with all relevant references replaced.

runner

The runner itself, which can be useful in more advanced cases.