Files
docx-js/build/file/paragraph/run/run.d.ts
2018-04-02 14:37:54 +03:00

21 lines
562 B
TypeScript

import { XmlComponent } from "../../../file/xml-components";
export declare class Run extends XmlComponent {
private properties;
constructor();
bold(): Run;
italic(): Run;
underline(underlineType?: string, color?: string): Run;
color(color: string): Run;
size(size: number): Run;
break(): Run;
tab(): Run;
smallCaps(): Run;
allCaps(): Run;
strike(): Run;
doubleStrike(): Run;
subScript(): Run;
superScript(): Run;
font(fontName: string): Run;
style(styleId: string): Run;
}