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

10 lines
188 B
TypeScript
Raw Normal View History

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