Directory structure:
- package.json
- .nodehawkrc
- src
- server.js
// server.js| /** | |
| * Simple Brand type to give us branding. It omits the `__brand` key so that | |
| * it does not show up in auto-complete | |
| */ | |
| type Brand<K, T> = T & Omit<{ | |
| __brand: K | |
| }, '__brand'> | |
Directory structure:
- package.json
- .nodehawkrc
- src
- server.js
// server.js