2022-07-04 16:07:04 -07:00
|
|
|
// import data from './data';
|
|
|
|
// import { getData, getSanitizedData, uniq, intersect } from './utils';
|
|
|
|
|
2022-07-04 13:30:35 -07:00
|
|
|
export interface searchOptions {
|
|
|
|
maxResults?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Emoji {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export const addCustomToPool = (customEmojis: Emoji[]) => {
|
|
|
|
};
|
|
|
|
|
|
|
|
const search = (str: string, options: searchOptions) => {
|
|
|
|
console.log(str, options);
|
|
|
|
return [];
|
|
|
|
};
|
|
|
|
|
|
|
|
export default search;
|