UNPKG

asposewordscloud

Version:
24 lines (23 loc) 711 B
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapStyleCopy: {}; /** * Represents a single document style to insert. */ export declare class StyleCopy implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the case sensitive name of the style to copy from it. */ styleName: string; constructor(init?: Partial<StyleCopy>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }