1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/model/memory/SearchManager.ts

19 lines
635 B
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import {AutoCompleteItem, SearchTypes} from '../../../common/entities/AutoCompleteItem';
import {ISearchManager} from '../interfaces/ISearchManager';
import {SearchResultDTO} from '../../../common/entities/SearchResultDTO';
2016-05-05 00:34:54 +08:00
2016-05-09 23:04:56 +08:00
export class SearchManager implements ISearchManager {
2017-07-08 06:18:24 +08:00
autocomplete(text: string): Promise<AutoCompleteItem[]> {
2018-03-31 03:30:30 +08:00
throw new Error('Method not implemented.');
2017-07-08 04:54:18 +08:00
}
2016-05-05 00:34:54 +08:00
2017-07-08 06:18:24 +08:00
search(text: string, searchType: SearchTypes): Promise<SearchResultDTO> {
2018-03-31 03:30:30 +08:00
throw new Error('Method not implemented.');
2017-07-08 04:54:18 +08:00
}
2016-05-05 00:34:54 +08:00
2017-07-08 06:18:24 +08:00
instantSearch(text: string): Promise<SearchResultDTO> {
2018-03-31 03:30:30 +08:00
throw new Error('Method not implemented.');
2017-07-08 04:54:18 +08:00
}
2016-05-10 03:43:52 +08:00
2017-07-08 04:54:18 +08:00
}