2018-01-29 21:53:22 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
2018-06-21 12:03:34 +02:00
|
|
|
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",
|
|
|
|
};
|
|
|
|
}
|