Options for initializing a basic search provider.

interface BaseProviderOptions {
    label?: string;
    searchUrl?: string;
}

Properties

Properties

label?: string

Label to represent the provider. This could be used for user interfaces to display the source of search results.

searchUrl?: string

URL endpoint for the search service. This is where queries will be sent to obtain search results.