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) • 405 B
TypeScript
import { XmlComponent } from '../../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);
}