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,13 +1,13 @@
import { XmlAttributeComponent } from "file/xml-components";
export interface IPageMarginAttributes {
top: number;
right: number;
bottom: number;
left: number;
header: number;
footer: number;
gutter: number;
top?: number;
right?: number;
bottom?: number;
left?: number;
header?: number;
footer?: number;
gutter?: number;
}
export class PageMarginAttributes extends XmlAttributeComponent<IPageMarginAttributes> {