Type alias DBQueryResponse

DBQueryResponse: {
    matches: {
        id: string;
        metadata?: Record<string, string>;
        score: number;
    }[];
}

Type declaration

  • matches: {
        id: string;
        metadata?: Record<string, string>;
        score: number;
    }[]