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