2018-01-29 02:56:35 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
2018-06-21 12:03:34 +02:00
|
|
|
export enum HeaderReferenceType {
|
|
|
|
DEFAULT = "default",
|
|
|
|
FIRST = "first",
|
|
|
|
EVEN = "even",
|
|
|
|
}
|
|
|
|
|
2021-03-15 00:11:39 +00:00
|
|
|
export class HeaderReferenceAttributes extends XmlAttributeComponent<{
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly type: string;
|
|
|
|
readonly id: string;
|
2021-03-15 00:11:39 +00:00
|
|
|
}> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2018-01-29 02:56:35 +00:00
|
|
|
type: "w:type",
|
|
|
|
id: "r:id",
|
|
|
|
};
|
|
|
|
}
|