Where should I add something like this? TypeScript: ```ts function hello(): never { // ok while(true) {} } ``` Flow: ```js function hello(): empty { // error, void is incompatible with empty while(true) {} } ```