UNPKG

asposewordscloud

Version:
28 lines (27 loc) 827 B
import { AttributeInfo } from '../internal/attributeInfo'; import { RevisionCollection } from './revisionCollection'; import { WordsResponse } from './wordsResponse'; export declare const importsMapRevisionsResponse: { RevisionCollection: typeof RevisionCollection; WordsResponse: typeof WordsResponse; }; /** * The revision response. */ export declare class RevisionsResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets Revisions. */ revisions: RevisionCollection; constructor(init?: Partial<RevisionsResponse>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }