Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 841 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 841 Bytes

license LinkedIn

TypeScript Design Patterns

The repository is a monorepo containing some examples of design patterns in typescript.

🚀 Contents

🏭 Factory Method

The factory method is a pattern that provides a base interface for creating others interfaces, you can learn more on this website.

Example
The project is about a vehicle store that manages cars, motorcycles and trucks to sell. (Open repository)


❗WIP