Interface AdditionalSearchOption

Represents additional options for the search function.

interface AdditionalSearchOption {
    baseUrl?: string;
    skipEmptyQueryCheck?: boolean;
    skipSanitizeQuery?: boolean;
}

Hierarchy (view full)

Properties

baseUrl?: string

Override the default BASE_URL.

skipEmptyQueryCheck?: boolean

Don't throw an error if no query is provided.

skipSanitizeQuery?: boolean

Whether to skip the query string sanitization.

Generated using TypeDoc