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

12 lines
232 B
TypeScript

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