asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
34 lines (33 loc) • 1.03 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { DocumentStatData } from './documentStatData';
import { FileLink } from './fileLink';
import { WordsResponse } from './wordsResponse';
export declare const importsMapStatDataResponse: {
DocumentStatData: typeof DocumentStatData;
FileLink: typeof FileLink;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with document's statistical data.
*/
export declare class StatDataResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the link to the document.
*/
documentLink: FileLink;
/**
* Gets or sets the statistical data of the document.
*/
statData: DocumentStatData;
constructor(init?: Partial<StatDataResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}