29 lines
552 B
TypeScript
29 lines
552 B
TypeScript
import { ParagraphPropertyJSON } from "./paragraph";
|
|
|
|
export type LevelJSON = {
|
|
level: number;
|
|
start: number;
|
|
format: string;
|
|
text: string;
|
|
jc: string;
|
|
pstyle: string | null;
|
|
paragraphProperty: ParagraphPropertyJSON;
|
|
};
|
|
|
|
export type AbstractNumberingJSON = {
|
|
id: number;
|
|
levels: LevelJSON[];
|
|
numStyleLink: string | null;
|
|
styleLink: string | null;
|
|
};
|
|
|
|
export type NumberingJSON = {
|
|
id: number;
|
|
abstractNumId: number;
|
|
};
|
|
|
|
export type NumberingsJSON = {
|
|
abstractNums: AbstractNumberingJSON[];
|
|
numberings: NumberingJSON[];
|
|
};
|