21 lines
562 B
TypeScript
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;
|
|
}
|