Files
docx-js/src/file/document/body/section-properties/footer-reference/footer-reference.ts

15 lines
403 B
TypeScript
Raw Normal View History

2018-01-29 21:53:22 +00:00
import { XmlComponent } from "file/xml-components";
import { FooterReferenceAttributes } from "./footer-reference-attributes";
export class FooterReference extends XmlComponent {
constructor() {
super("w:footerReference");
this.root.push(
new FooterReferenceAttributes({
type: "default",
id: `rId${4}`,
}),
);
}
}