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

20 lines
425 B
TypeScript
Raw Normal View History

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