UNPKG

memofai

Version:

Revolutionary dual-track AI memory infrastructure SDK for JavaScript/TypeScript applications

9 lines 408 B
import type { HTTPClient } from './http-client'; import type { GraphSearchRequest, GraphSearchResponse, SearchTypeInfo } from '../types'; export declare class GraphSearchAPI { private httpClient; constructor(httpClient: HTTPClient); search(params: GraphSearchRequest): Promise<GraphSearchResponse>; getSearchTypes(): Promise<SearchTypeInfo[]>; } //# sourceMappingURL=graph-search-api.d.ts.map