An IUriResolver implementation that prevents infinite loops in the resolution path.

Type Parameters

  • TError = undefined

Hierarchy

  • ResolverWithLoopGuard

Implements

Constructors

Properties

Methods

Constructors

  • Construct a ResolverWithLoopGuard

    Type Parameters

    • TError = undefined

    Parameters

    • _resolver: IUriResolver<TError>

      a resolution to delegate resolution to

    Returns ResolverWithLoopGuard<TError>

Properties

_resolver: any

Methods

  • Resolve a URI to a wrap package, a wrapper, or a URI. Ensures the URI is not caught in an infinite loop by checking if it is already resolving.

    Parameters

    • uri: Uri

      the URI to resolve

    • client: CoreClient

      a CoreClient instance that may be used to invoke a wrapper that implements the UriResolver interface

    • resolutionContext: IUriResolutionContext

      the current URI resolution context

    Returns Promise<Result<UriPackageOrWrapper, InfiniteLoopError | TError>>

    A Promise with a Result containing either a wrap package, a wrapper, or a URI if successful

  • Create a ResolverWithLoopGuard from a resolver-like object

    Type Parameters

    • TResolverError = unknown

    Parameters

    Returns ResolverWithLoopGuard<TResolverError>

    a ResolverWithLoopGuard

Generated using TypeDoc