@joefitter/docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
12 lines (11 loc) • 394 B
TypeScript
import { XmlComponent } from "../../../file/xml-components";
export interface IStyleAttributes {
readonly type?: string;
readonly styleId?: string;
readonly default?: boolean;
readonly customStyle?: string;
}
export declare class Style extends XmlComponent {
constructor(attributes: IStyleAttributes, name?: string);
push(styleSegment: XmlComponent): void;
}