Files
docx-js/src/file/document/body/section-properties/columns/columns-attributes.ts

14 lines
338 B
TypeScript
Raw Normal View History

2018-01-24 00:01:38 +00:00
import { XmlAttributeComponent } from "file/xml-components";
export class ColumnsAttributes extends XmlAttributeComponent<{
readonly space?: number;
2019-06-21 01:22:27 +05:30
readonly num?: number;
readonly separate?: boolean;
}> {
protected readonly xmlKeys = {
2018-01-24 00:01:38 +00:00
space: "w:space",
2019-06-21 01:22:27 +05:30
num: "w:num",
separate: "w:sep",
2018-01-24 00:01:38 +00:00
};
}