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