docx-rs/docx-wasm/js/json/footer.ts

12 lines
232 B
TypeScript
Raw Normal View History

import { ParagraphJSON } from "./paragraph";
import { TableJSON } from "./table";
export type FooterJSON = {
children: (ParagraphJSON | TableJSON)[];
};
export type FooterReferenceJSON = {
footerType: string;
id: string;
};