Only allow supported event names where we use EventEmitter. To prevent typos and improve auto-complete. ```js import got from 'got'; // Pass got.stream(url).on('error', error => {}); // TS compile error got.stream(url).on('err', error => {}); ```