charto / cxml

Advanced schema-aware streaming XML parser
MIT License
43 stars 33 forks source link

Missing .content property? #7

Open ghent360 opened 7 years ago

ghent360 commented 7 years ago

Hi,

I have the following type in my .xsd file: `

`

Sample xml would be: <text x="3.556" y="-4.318">&gt;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; }