Владимир

Results 2 issues of Владимир

Flow has different methods helpful for enum usage: https://flow.org/en/docs/enums/using-enums/#toc-methods 1) cast 2) isValid It will be wonderful to include some helpers with strict type safety in TS: ``` v =...

ES2020' `Promise.allSettled` uses some additional types where `reason` field is untyped and can be changed to `unknown`: ```typescript interface PromiseRejectedResult { status: "rejected"; reason: any; } ```