UNPKG

asposewordscloud

Version:
27 lines (26 loc) 757 B
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; import { Revision } from './revision'; export declare const importsMapRevisionCollection: { Revision: typeof Revision; }; /** * RevisionCollection DTO. */ export declare class RevisionCollection implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the revisions. */ revisions: Array<Revision>; constructor(init?: Partial<RevisionCollection>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }