UNPKG

asposewordscloud

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