17 lines
482 B
TypeScript
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;
|
|
}
|