2018-01-24 00:01:38 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
2021-03-04 03:02:07 +00:00
|
|
|
export class ColumnsAttributes extends XmlAttributeComponent<{
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly space?: number;
|
2019-06-21 01:22:27 +05:30
|
|
|
readonly num?: number;
|
2021-03-04 03:02:07 +00:00
|
|
|
readonly separate?: boolean;
|
|
|
|
}> {
|
2018-11-02 02:51:57 +00:00
|
|
|
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",
|
2021-03-04 03:02:07 +00:00
|
|
|
separate: "w:sep",
|
2018-01-24 00:01:38 +00:00
|
|
|
};
|
|
|
|
}
|