import getCertain = require('get-certain'); const map = new Map(); map.set('foo', 1); // $ExpectType number getCertain(map, 'foo'); getCertain(map, 'bar', 'This map is barless.');