Multiple columns in a section

This commit is contained in:
Zahra
2019-06-21 01:22:27 +05:30
parent 58dc6fe389
commit 1dfc27ba08
6 changed files with 37 additions and 6 deletions

View File

@ -2,10 +2,12 @@ import { XmlAttributeComponent } from "file/xml-components";
export interface IColumnsAttributes {
readonly space?: number;
readonly num?: number;
}
export class ColumnsAttributes extends XmlAttributeComponent<IColumnsAttributes> {
protected readonly xmlKeys = {
space: "w:space",
num: "w:num",
};
}