new

 

 



View filtered by:

Public Diagrams by Others


#2954 ADAPTER design_patterns_in_typescript
Created by: abulka   published
Language: Babel
Repository: torokmark/design_patterns_in_typescript  github
Commit: main
Tags: typescript
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…