removed "both" as a verticalAlign feature

fixes: https://github.com/dolanmiu/docx/issues/1514
This commit is contained in:
Gilad Feder
2022-06-24 13:12:50 +03:00
committed by GitHub
parent 49054dae27
commit 60096a94c9

View File

@ -8,12 +8,10 @@ import { XmlAttributeComponent, XmlComponent } from "file/xml-components";
// <xsd:restriction base="xsd:string">
// <xsd:enumeration value="top"/>
// <xsd:enumeration value="center"/>
// <xsd:enumeration value="both"/>
// <xsd:enumeration value="bottom"/>
// </xsd:restriction>
// </xsd:simpleType>
export enum VerticalAlign {
BOTH = "both",
BOTTOM = "bottom",
CENTER = "center",
TOP = "top",