TypeAware / oredoc

Node.js ApiDoc generator (programmatic)
MIT License
1 stars 0 forks source link

namespaces can't have weird chars #5

Open ORESoftware opened 5 years ago

ORESoftware commented 5 years ago
exports.entities = {
   'xx-x' : {

  }
}

unless it's a typescript interface, it can't have weird chars like hyphens etc.

so this would be ok:

exports.entities = {
   'foo' : set(ts.interface, {
      'xx-x' : {}
  })
}