docx-rs/docx-wasm/js/break.ts

9 lines
162 B
TypeScript

export type BreakType = "page" | "column" | "textWrapping";
export class Break {
type: BreakType;
constructor(type: BreakType) {
this.type = type;
}
}