Deregister a provider.
the name of the provider.
Hide the Home UI.
Register a provider that can return search results to Home.
import { Home, CLIProvider } from "@openfin/workspace";
import { fetchMySearchResults } from "./my-fetch-implementation";
const myCLIProvider: CLIProvider = {
name: "my-cli-provider",
title: "My CLI Provider",
icon: "https://google.com/favicon.ico",
onUserInput: (req) => fetchMySearchResults(req.query)
};
Home.register(myCLIProvider);
the provider implementation.
Show the Home UI.
Generated using TypeDoc
Interface that contains functions for integrating with Home.