// Flow 0.76 // Typescript
- Flow - poor, only by official playground, can't share code
- Typescript - great
- Flow - poor, laggy, memory leaks, stuns
- Typescript - great
- Flow - no
- Typescript - yes
- Flow - type check need type cast
const test: 'Ha!' = 'Ha!';
test === 'WAT?' // no error
test === ('WAT?: 'Ha!'); // works, but OMG its manual!
- Typescript - works fine