Add header objects and demo

This commit is contained in:
Dolan
2018-01-29 02:56:35 +00:00
parent 079334f71b
commit 8b8c664f0f
9 changed files with 54 additions and 15 deletions

View File

@ -0,0 +1,13 @@
import { XmlAttributeComponent } from "file/xml-components";
export interface IHeaderReferenceAttributes {
type: string;
id: string;
}
export class HeaderReferenceAttributes extends XmlAttributeComponent<IHeaderReferenceAttributes> {
protected xmlKeys = {
type: "w:type",
id: "r:id",
};
}