UNPKG

asposewordscloud

Version:
28 lines (27 loc) 796 B
import { AttributeInfo } from '../internal/attributeInfo'; import { Position } from './position'; import { RunBase } from './runBase'; export declare const importsMapRunInsert: { Position: typeof Position; RunBase: typeof RunBase; }; /** * Run element for insert. */ export declare class RunInsert extends RunBase { /** * 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 run. */ position: Position; constructor(init?: Partial<RunInsert>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }