Files
docx-js/src/file/document/body/section-properties/page-size/page-size-attributes.ts

14 lines
310 B
TypeScript
Raw Normal View History

2018-01-24 00:01:38 +00:00
import { XmlAttributeComponent } from "file/xml-components";
export interface IPageSizeAttributes {
2018-01-25 01:21:03 +00:00
width?: number;
height?: number;
2018-01-24 00:01:38 +00:00
}
export class PageSizeAttributes extends XmlAttributeComponent<IPageSizeAttributes> {
protected xmlKeys = {
width: "w:w",
height: "w:h",
};
}