UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

13 lines (12 loc) 489 B
import { IRunStylePropertiesOptions } from '../../paragraph/run/properties'; import { IStyleOptions, Style } from "./style"; export interface IBaseCharacterStyleOptions extends IStyleOptions { readonly run?: IRunStylePropertiesOptions; } export interface ICharacterStyleOptions extends IBaseCharacterStyleOptions { readonly id: string; } export declare class StyleForCharacter extends Style { private readonly runProperties; constructor(options: ICharacterStyleOptions); }