Files
docx-js/src/file/document/body/section-properties/footer-reference/footer-reference-attributes.ts
2018-06-21 12:03:34 +02:00

20 lines
425 B
TypeScript

import { XmlAttributeComponent } from "file/xml-components";
export enum FooterReferenceType {
DEFAULT = "default",
FIRST = "first",
EVEN = "even",
}
export interface IFooterReferenceAttributes {
type: string;
id: string;
}
export class FooterReferenceAttributes extends XmlAttributeComponent<IFooterReferenceAttributes> {
protected xmlKeys = {
type: "w:type",
id: "r:id",
};
}