bafolts / tplant

Typescript to plantuml
https://segmentationfaults.com/tplant/default.html
GNU General Public License v3.0
266 stars 34 forks source link

Can't extends multiple interfaces #77

Open okenoruk opened 2 years ago

okenoruk commented 2 years ago

Hello! I encountered a problem when generating diagram.

Example content-object.model.ts:

export interface ContentObject extends PageOption, BaseContentModel {
  id: number;
  type: string;
  name: string;
  label: string;
}

When I produce the UML file, there should have be two extend arrows (Pageoption and Basecontentmodel) but it only had one to PageOption interface.

Results in

ContentObject ⇒ PageOption