mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
21 lines
705 B
TypeScript
21 lines
705 B
TypeScript
import {AutoCompleteItem, SearchTypes} from "../../../common/entities/AutoCompleteItem";
|
|
import {ISearchManager} from "../interfaces/ISearchManager";
|
|
import {SearchResult} from "../../../common/entities/SearchResult";
|
|
|
|
export class SearchManager implements ISearchManager {
|
|
|
|
|
|
autocomplete(text: string, cb: (error: any, result: Array<AutoCompleteItem>) => void) {
|
|
throw new Error("not implemented");
|
|
}
|
|
|
|
search(text: string, searchType: SearchTypes, cb: (error: any, result: SearchResult) => void) {
|
|
throw new Error("not implemented");
|
|
}
|
|
|
|
instantSearch(text: string, cb: (error: any, result: SearchResult) => void) {
|
|
throw new Error("not implemented");
|
|
}
|
|
|
|
|
|
} |