Made project Prettier compliant
This commit is contained in:
@ -3,17 +3,17 @@ import { Attributes, XmlComponent } from "file/xml-components";
|
||||
import { Run } from "../run";
|
||||
|
||||
class Break extends XmlComponent {
|
||||
|
||||
constructor() {
|
||||
super("w:br");
|
||||
this.root.push(new Attributes({
|
||||
type: "page",
|
||||
}));
|
||||
this.root.push(
|
||||
new Attributes({
|
||||
type: "page",
|
||||
}),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export class PageBreak extends Run {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.root.push(new Break());
|
||||
|
Reference in New Issue
Block a user