Interface SearchReply

interface SearchReply {
    documents: {
        id: string;
        value: SearchDocumentValue;
    }[];
    total: number;
}

Properties

Properties

documents: {
    id: string;
    value: SearchDocumentValue;
}[]

Type declaration

  • id: string
  • value: SearchDocumentValue
total: number

Generated using TypeDoc