UNPKG

asposewordscloud

Version:
22 lines (21 loc) 628 B
import { AttributeInfo } from '../internal/attributeInfo'; import { TabStopBase } from './tabStopBase'; export declare const importsMapTabStopInsert: { TabStopBase: typeof TabStopBase; }; /** * A DTO to Insert / replace a tab stop. */ export declare class TabStopInsert extends TabStopBase { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; constructor(init?: Partial<TabStopInsert>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }