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

9 lines
152 B
TypeScript

export type IndentJSON = {
start: number;
end: number | null;
specialIndent: {
type: "firstLine" | "hanging";
val: number;
} | null;
};