docx-rs/docx-wasm/js/abstract-numbering.ts

14 lines
234 B
TypeScript
Raw Normal View History

import { Level } from "./level";
export class AbstractNumbering {
id: number;
2020-05-15 07:06:33 +03:00
levels: Level[] = [];
constructor(id: number) {
this.id = id;
}
addLevel(level: Level) {
this.levels.push(level);
return this;
}
}