The instantiation options for an inspection handler.

interface IOptions {
    connector: IDataConnector<
        IReply,
        void,
        InspectionHandler.IRequest,
        string,
    >;
    rendermime: IRenderMimeRegistry;
}

Properties

connector: IDataConnector<IReply, void, InspectionHandler.IRequest, string>

The connector used to make inspection requests.

The only method of this connector that will ever be called is fetch, so it is acceptable for the other methods to be simple functions that return rejected promises.

The mime renderer for the inspection handler.