2018-01-24 00:01:38 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
|
|
|
export interface IColumnsAttributes {
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly space?: number;
|
2018-01-24 00:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class ColumnsAttributes extends XmlAttributeComponent<IColumnsAttributes> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2018-01-24 00:01:38 +00:00
|
|
|
space: "w:space",
|
|
|
|
};
|
|
|
|
}
|