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

https://github.com/imteekay/advanced-typescript

Advanced TypeScript
https://github.com/imteekay/advanced-typescript

Last synced: 9 months ago
JSON representation

Advanced TypeScript

Awesome Lists containing this project

README

          

# Advanced TypeScript

- [Destructuring](./src/destructuring.ts)
- [Spread Operator](./src/spread-operator.ts)
- [Tuple Type](./src/tuple.ts)
- [Interface + Extends + Array + Generics + Union = Tuple](./src/key-value-pair.ts)
- [Union Type](./src/union.ts)
- [String Literal Type and Type Aliases](./src/string-literal-and-type-aliases.ts)
- [Polymorphic This](./src/polymorphic-this-type.ts)
- [Type Guards](./src/type-guards.ts)
- [Symbols](./src/symbol.ts)
- [As Const](./src/as-const.ts)
- [Readonly](./src/readonly.ts)
- [Optional Chaining](./src/optional-chaining.ts)
- [Nullish Coalescing](./src/nullish-coalescing.ts)
- [Exhaustive Switch](./src/exhaustive-switch.ts)
- [Pick](./src/pick.ts)
- [Record](./src/record.ts)