UNPKG

asposewordscloud

Version:
24 lines (23 loc) 707 B
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapStyleApply: {}; /** * Represents a single document style to insert. */ export declare class StyleApply 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 apply. */ styleName: string; constructor(init?: Partial<StyleApply>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }