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