mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-10 04:56:56 +00:00
16 lines
363 B
TypeScript
16 lines
363 B
TypeScript
import Explorer from "../../Explorer/Explorer";
|
|
|
|
export default class HostedExplorerFactory {
|
|
public createExplorer(): Explorer {
|
|
const explorer = new Explorer();
|
|
|
|
return explorer;
|
|
}
|
|
|
|
public static reInitializeDocumentClientUtilityForExplorer(explorer: Explorer): void {
|
|
if (!!explorer) {
|
|
explorer.notificationConsoleData([]);
|
|
}
|
|
}
|
|
}
|