UNPKG

asposewordscloud

Version:
22 lines (21 loc) 648 B
import { AttributeInfo } from '../internal/attributeInfo'; import { Position } from './position'; export declare const importsMapPositionBeforeNode: { Position: typeof Position; }; /** * Describes the location of the node before specified node. */ export declare class PositionBeforeNode extends Position { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; constructor(init?: Partial<PositionBeforeNode>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }