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

17 lines
319 B
TypeScript

import { ParagraphPropertyJSON } from "./paragraph";
export type AbstractNumberingJSON = {
level: number;
start: number;
format: string;
text: string;
jc: string;
pstyle: string | null;
paragraphProperty: ParagraphPropertyJSON;
};
export type NumberingJSON = {
id: number;
abstractNumId: number;
};