Added option to set secondary search provider

This commit is contained in:
Paweł Malak
2022-03-25 14:28:40 +01:00
parent 2c0491a5b0
commit 16121ff547
9 changed files with 79 additions and 25 deletions

View File

@@ -4,7 +4,8 @@ export interface SearchResult {
isLocal: boolean;
isURL: boolean;
sameTab: boolean;
search: string;
query: Query;
encodedURL: string;
primarySearch: Query;
secondarySearch: Query;
rawQuery: string;
}