13 lines
266 B
TypeScript
13 lines
266 B
TypeScript
import { Attributes, XmlComponent } from "../../xml-components";
|
|
|
|
export class PageSize extends XmlComponent {
|
|
|
|
constructor() {
|
|
super("w:pgSz");
|
|
this.root.push(new Attributes({
|
|
w: "11906",
|
|
h: "16838",
|
|
}));
|
|
}
|
|
}
|