trieve-search-component
Version:
The easiest way to get up and running in your app using trieve search.
13 lines • 440 B
TypeScript
import { ChunkWithHighlights } from "./types";
export declare const guessTitleAndDesc: (item: ChunkWithHighlights) => {
title: string;
descriptionHtml: string;
};
export declare const findCommonName: (names: string[]) => string | null;
interface HasTitle {
title: string;
[key: string]: any;
}
export declare function uniquifyVariants<T extends HasTitle>(array: T[]): T[];
export {};
//# sourceMappingURL=estimation.d.ts.map