UNPKG

asposewordscloud

Version:
28 lines (27 loc) 842 B
import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; import { SearchResult } from './searchResult'; export declare const importsMapSearchResultsCollection: { LinkElement: typeof LinkElement; SearchResult: typeof SearchResult; }; /** * The collection of search results. */ export declare class SearchResultsCollection extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of comments. */ resultsList: Array<SearchResult>; constructor(init?: Partial<SearchResultsCollection>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }