red-ui/libs/red-domain/src/lib/search/matched-document.ts
2023-07-06 13:12:40 +03:00

17 lines
482 B
TypeScript

import { IMatchedSection } from './matched-section';
import { List } from '@iqser/common-ui/lib/utils';
export interface IMatchedDocument {
containsAllMatchedSections?: boolean;
dossierId?: string;
dossierTemplateId?: string;
dossierDeleted?: boolean;
dossierArchived?: boolean;
fileId?: string;
highlights?: { [key: string]: List };
matchedSections?: List<IMatchedSection>;
matchedTerms?: List;
score?: number;
unmatchedTerms?: List;
}