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

22 lines
386 B
TypeScript
Raw Normal View History

2020-02-13 10:02:08 +02:00
import { ParagraphPropertyJSON } from "./paragraph";
export type LevelJSON = {
2020-02-13 10:02:08 +02:00
level: number;
start: number;
format: string;
text: string;
jc: string;
pstyle: string | null;
paragraphProperty: ParagraphPropertyJSON;
};
export type AbstractNumberingJSON = {
id: number;
levels: LevelJSON[];
};
2020-02-13 10:02:08 +02:00
export type NumberingJSON = {
id: number;
abstractNumId: number;
};