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

9 lines
152 B
TypeScript
Raw Normal View History

2020-02-27 20:12:36 +02:00
export type IndentJSON = {
start: number;
end: number | null;
specialIndent: {
type: "firstLine" | "hanging";
val: number;
} | null;
};