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) • 413 B
TypeScript
import { XmlComponent } from "../../../file/xml-components";
export interface IFontAttributesProperties {
readonly ascii?: string;
readonly cs?: string;
readonly eastAsia?: string;
readonly hAnsi?: string;
readonly hint?: string;
}
export declare class RunFonts extends XmlComponent {
constructor(name: string, hint?: string);
constructor(attrs: string | IFontAttributesProperties);
}