https://github.com/santiagodotsh/ts-notes
📘 📝 Personal TypeScript notes and reference guide.
https://github.com/santiagodotsh/ts-notes
generics inheritance interfaces notes oop types typescript
Last synced: 8 months ago
JSON representation
📘 📝 Personal TypeScript notes and reference guide.
- Host: GitHub
- URL: https://github.com/santiagodotsh/ts-notes
- Owner: santiagodotsh
- Created: 2024-09-17T22:20:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-03T14:44:08.000Z (over 1 year ago)
- Last Synced: 2025-10-07T00:32:42.652Z (9 months ago)
- Topics: generics, inheritance, interfaces, notes, oop, types, typescript
- Language: TypeScript
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TypeScript Notes
TypeScript is a typed language that extends JavaScript, enhancing tooling and scalability.
## Contents
- [Types](./1_types.ts)
- [Object-Oriented Programming (OOP)](./2_OOP.ts)
- [Inheritance](./3_inheritance.ts)
- [Interfaces](./4_interfaces.ts)
- [Generics](./5_generics.ts)
## Transpile and run the project
```bash
# transpile TypeScript to JavaScript
$ tsc
# run the transpiled JavaScript code with Node.js
$ node
```