asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
28 lines (27 loc) • 808 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { FieldBase } from './fieldBase';
import { Position } from './position';
export declare const importsMapFieldInsert: {
FieldBase: typeof FieldBase;
Position: typeof Position;
};
/**
* Field for insert.
*/
export declare class FieldInsert extends FieldBase {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the position of the node that will be used to determine the placement of a new field.
*/
position: Position;
constructor(init?: Partial<FieldInsert>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}