asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
39 lines (38 loc) • 1.11 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { FootnotesStatData } from './footnotesStatData';
export declare const importsMapPageStatData: {
FootnotesStatData: typeof FootnotesStatData;
};
/**
* Container for the page's statistical data.
*/
export declare class PageStatData implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the detailed statistics on the footnotes.
*/
footnotesStatData: FootnotesStatData;
/**
* Gets or sets the total count of paragraphs in the page.
*/
paragraphCount: number;
/**
* Gets or sets the total count of words in the page.
*/
wordCount: number;
/**
* Gets or sets the page number.
*/
pageNumber: number;
constructor(init?: Partial<PageStatData>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}