This might be an easy one to fix, but I am using typescript and webpack. when I use
import WebMidi from 'webmidi'
I just get undefined !
What's weird is I do see the type descriptions in my editor

I can see this in the webmidi.d.ts file
/** The `webmidi` module is a singleton of the `WebMidi` class */
declare const webmidi: WebMidi
export default webmidi;
Yet, here is the actual output.

using all lowercase (as in the example) also produces identical results.