The options used to create a UrlResolver.

interface IUrlResolverOptions {
    contents: Contents.IManager;
    getKernelId?: () => undefined | null | string;
    path: string;
}

Properties

contents: Contents.IManager

The contents manager used by the resolver.

getKernelId?: () => undefined | null | string

Get the current kernel id used by the resolvePath endpoint.

path: string

The path providing context for local urls.

Either session or path must be given, and path takes precedence.