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