UNPKG

asposewordscloud

Version:
35 lines (34 loc) 969 B
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; import { FileLink } from './fileLink'; export declare const importsMapSplitDocumentResult: { FileLink: typeof FileLink; }; /** * Result of splitting document. */ export declare class SplitDocumentResult implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the link to the source document. */ sourceDocument: FileLink; /** * Gets or sets the link to the file archive with pages. */ zippedPages: FileLink; /** * Gets or sets the list of pages. */ pages: Array<FileLink>; constructor(init?: Partial<SplitDocumentResult>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }