Add two files of GraphExplorer component in Master (#365)

This commit is contained in:
Chris-MS-896
2021-01-08 21:14:53 -06:00
committed by GitHub
parent 76d7f00a90
commit 983c9201bb
3 changed files with 11 additions and 8 deletions

View File

@@ -1,14 +1,14 @@
import { Observable, of } from "rxjs";
import { AjaxResponse } from "rxjs/ajax";
import { ServerConfig } from "rx-jupyter";
import { AjaxRequest, AjaxResponse } from "rxjs/ajax";
import { ServerConfig } from "@nteract/types";
let fakeAjaxResponse: AjaxResponse = {
originalEvent: undefined,
originalEvent: <Event>(<unknown>undefined),
xhr: new XMLHttpRequest(),
request: null,
request: <AjaxRequest>(<unknown>null),
status: 200,
response: {},
responseText: null,
responseText: "",
responseType: "json"
};
export const sessions = {