UNPKG

asposewordscloud

Version:
28 lines (27 loc) 931 B
import { AttributeInfo } from '../internal/attributeInfo'; import { StructuredDocumentTag } from './structuredDocumentTag'; import { WordsResponse } from './wordsResponse'; export declare const importsMapStructuredDocumentTagResponse: { StructuredDocumentTag: typeof StructuredDocumentTag; WordsResponse: typeof WordsResponse; }; /** * The REST response with a StructuredDocumentTag. */ export declare class StructuredDocumentTagResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the StructuredDocumentTag. */ structuredDocumentTag: StructuredDocumentTag; constructor(init?: Partial<StructuredDocumentTagResponse>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }