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

13 lines
267 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;
// Read only
hangingChars: number | null;
firstLineChars: number | null;
2020-02-27 20:12:36 +02:00
};