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

12 lines
352 B
TypeScript
Raw Normal View History

2018-04-02 14:37:54 +03:00
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IFooterReferenceAttributes {
type: string;
id: string;
}
export declare class FooterReferenceAttributes extends XmlAttributeComponent<IFooterReferenceAttributes> {
protected xmlKeys: {
type: string;
id: string;
};
}