UNPKG

asposewordscloud

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