20 lines
425 B
TypeScript
20 lines
425 B
TypeScript
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
export enum HeaderReferenceType {
|
|
DEFAULT = "default",
|
|
FIRST = "first",
|
|
EVEN = "even",
|
|
}
|
|
|
|
export interface IHeaderReferenceAttributes {
|
|
type: string;
|
|
id: string;
|
|
}
|
|
|
|
export class HeaderReferenceAttributes extends XmlAttributeComponent<IHeaderReferenceAttributes> {
|
|
protected xmlKeys = {
|
|
type: "w:type",
|
|
id: "r:id",
|
|
};
|
|
}
|