asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
22 lines (21 loc) • 592 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { FieldBase } from './fieldBase';
export declare const importsMapFieldUpdate: {
FieldBase: typeof FieldBase;
};
/**
* Field for update.
*/
export declare class FieldUpdate extends FieldBase {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
constructor(init?: Partial<FieldUpdate>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}