https://github.com/pavanpodila/domain-modeling-with-typescript
https://github.com/pavanpodila/domain-modeling-with-typescript
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pavanpodila/domain-modeling-with-typescript
- Owner: pavanpodila
- Created: 2019-03-20T17:31:08.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-01T05:13:07.000Z (about 6 years ago)
- Last Synced: 2025-01-31T15:49:53.951Z (4 months ago)
- Language: TypeScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
- Type System
- Structural vs Nominal
- Declaration Merging
- Type Declarations
- interface
- class
- type alias
- inline type
- Enums
- Classic enums
- String enums
- Numeric enums
- String literal union
- Number literal union
- Algebraic Data Types
- Union types
- Intersection types
- Type Guards and Type Narrowing
- Generics
- Special Types
- Optional
- Nullable
- Tuples
- never
- unknown
- Mapped Types