14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
![]() |
import { XmlAttributeComponent } from "file/xml-components";
|
||
|
|
||
|
export interface IFooterReferenceAttributes {
|
||
|
type: string;
|
||
|
id: string;
|
||
|
}
|
||
|
|
||
|
export class FooterReferenceAttributes extends XmlAttributeComponent<IFooterReferenceAttributes> {
|
||
|
protected xmlKeys = {
|
||
|
type: "w:type",
|
||
|
id: "r:id",
|
||
|
};
|
||
|
}
|