import { IDocsSearchHighlightResultDTO } from './IDocsSearchHighlightResult.dto'; import { IDocsSearchSnippetResultDTO } from './IDocsSearchSnippetResult.dto'; export interface IDocsSearchResultItemDTO { indexName: string; title: string; type: string; slug: string; isReference: boolean; method: string; link_url: string; project: string; version: string; versionPath: string; referenceId: string; subdomain: string; internalLink: string; objectID: string; _snippetResult: { title: IDocsSearchSnippetResultDTO; header: IDocsSearchSnippetResultDTO; excerpt: IDocsSearchSnippetResultDTO; body: IDocsSearchSnippetResultDTO; }; _highlightResult: { title: IDocsSearchHighlightResultDTO; header: IDocsSearchHighlightResultDTO; excerpt: IDocsSearchHighlightResultDTO; body: IDocsSearchHighlightResultDTO; }; url: string; }