You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following type in my .xsd file: <element name='text'> <complexType mixed='true'> <attribute name='x' type='string' use='required'/> <attribute name='y' type='string' use='required'/> </complexType> </element>
Sample xml would be: <text x="3.556" y="-4.318">>NAME</text>
However the generated _TextType interface has no .content property, so I have no way of accessing the value inside the text tag. Here is the generated _TextType interface:
Hi,
I have the following type in my .xsd file:
<element name='text'> <complexType mixed='true'> <attribute name='x' type='string' use='required'/> <attribute name='y' type='string' use='required'/> </complexType> </element>
Sample xml would be:
<text x="3.556" y="-4.318">>NAME</text>
However the generated _TextType interface has no .content property, so I have no way of accessing the value inside the text tag. Here is the generated _TextType interface:
interface _TextType extends BaseType { x: string; y: string; }
The text was updated successfully, but these errors were encountered: