Add section properties

This commit is contained in:
Dolan
2018-01-25 01:21:03 +00:00
parent 448572d7a1
commit 4339f8cfc0
7 changed files with 207 additions and 62 deletions

View File

@ -1,8 +1,8 @@
import { XmlAttributeComponent } from "file/xml-components";
export interface IPageSizeAttributes {
width: number;
height: number;
width?: number;
height?: number;
}
export class PageSizeAttributes extends XmlAttributeComponent<IPageSizeAttributes> {