add xsd comments to file/drawing

This commit is contained in:
Tom Hunkapiller
2021-05-26 09:28:31 +03:00
parent e4709a7f8d
commit 5a52541136
3 changed files with 46 additions and 0 deletions

View File

@ -15,6 +15,13 @@ export interface IDrawingOptions {
readonly floating?: IFloating;
}
// <xsd:complexType name="CT_Drawing">
// <xsd:choice minOccurs="1" maxOccurs="unbounded">
// <xsd:element ref="wp:anchor" minOccurs="0"/>
// <xsd:element ref="wp:inline" minOccurs="0"/>
// </xsd:choice>
// </xsd:complexType>
export class Drawing extends XmlComponent {
private readonly inline: Inline;