Merge pull request #465 from dolanmiu/feat/right-indent

Add right indent
This commit is contained in:
Dolan
2019-12-02 23:57:54 +00:00
committed by GitHub

View File

@ -7,6 +7,7 @@ export interface IIndentAttributesProperties {
readonly firstLine?: number; readonly firstLine?: number;
readonly start?: number; readonly start?: number;
readonly end?: number; readonly end?: number;
readonly right?: number;
} }
class IndentAttributes extends XmlAttributeComponent<IIndentAttributesProperties> { class IndentAttributes extends XmlAttributeComponent<IIndentAttributesProperties> {
@ -16,6 +17,7 @@ class IndentAttributes extends XmlAttributeComponent<IIndentAttributesProperties
firstLine: "w:firstLine", firstLine: "w:firstLine",
start: "w:start", start: "w:start",
end: "w:end", end: "w:end",
right: "w:end", // alias
}; };
} }