asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
29 lines (28 loc) • 1.09 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { HeaderFooterLinkCollection } from './headerFooterLinkCollection';
import { WordsResponse } from './wordsResponse';
export declare const importsMapHeaderFootersResponse: {
HeaderFooterLinkCollection: typeof HeaderFooterLinkCollection;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a collection of HeaderFooter elements.
* This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/headersfooters" REST API requests.
*/
export declare class HeaderFootersResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the collection of HeaderFooter elements.
*/
headerFooters: HeaderFooterLinkCollection;
constructor(init?: Partial<HeaderFootersResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}