The void type is used to indicate that a function does not return a value.
void
const sayHello = (): void => { console.log('Hello!');};