blob: bdb27415b2e000eaaab302f0195cc36f1510a1fe (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import * as tabs from '../tabs';
const getCompletions = (keyword, excludePinned) => {
return tabs.queryByKeyword(keyword, excludePinned);
};
export { getCompletions };
|