An open API service indexing awesome lists of open source software.

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.

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

```