mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
25 lines
684 B
TypeScript
25 lines
684 B
TypeScript
import {AutoCompleteItem, SearchTypes} from "../../../common/entities/AutoCompleteItem";
|
|
import {ISearchManager} from "../interfaces/ISearchManager";
|
|
import {SearchResultDTO} from "../../../common/entities/SearchResult";
|
|
|
|
export class SearchManager implements ISearchManager {
|
|
autocomplete(text: string): Promise<AutoCompleteItem[]> {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
|
|
search(text: string, searchType: SearchTypes): Promise<SearchResultDTO> {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
|
|
instantSearch(text: string): Promise<SearchResultDTO> {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
|
|
isSupported(): boolean {
|
|
return false;
|
|
}
|
|
|
|
|
|
|
|
}
|