Description:
This is how GitUML reverse engineers the adapter pattern. You can add further
refinements using the "Refine UML..." feature.
`namespace AdapterPattern { export class Adaptee { public method(): void {
console.log("`method` of Adaptee is being called"); } } export inter…