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

12 lines
318 B
TypeScript
Raw Normal View History

2016-05-05 00:34:54 +08:00
import {AutoCompleteItem} from "../../../common/entities/AutoCompleteItem";
import {ISearchManager} from "../ISearchManager";
2016-05-09 23:04:56 +08:00
export class SearchManager implements ISearchManager {
2016-05-05 00:34:54 +08:00
2016-05-09 23:04:56 +08:00
autocomplete(text, cb:(error:any, result:Array<AutoCompleteItem>) => void) {
2016-05-05 00:34:54 +08:00
throw new Error("not implemented");
}
}