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