mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
19 lines
635 B
TypeScript
19 lines
635 B
TypeScript
import {AutoCompleteItem, SearchTypes} from '../../../common/entities/AutoCompleteItem';
|
|
import {ISearchManager} from '../interfaces/ISearchManager';
|
|
import {SearchResultDTO} from '../../../common/entities/SearchResultDTO';
|
|
|
|
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.');
|
|
}
|
|
|
|
}
|