Coverage remained the same at 100.0% when pulling 7e48b3fad1ec6b66f0a40c5e2c6283891e37bbe9 on michaelmosher:master into 5e1638ddb2f58027ce4243ac38602a361b1f631e on jesseditson:master.
Coverage remained the same at 100.0% when pulling 7e48b3fad1ec6b66f0a40c5e2c6283891e37bbe9 on michaelmosher:master into 5e1638ddb2f58027ce4243ac38602a361b1f631e on jesseditson:master.
I ran into issue when I tried to use the new type declarations. Example code:
Typescript was able to compile this, but running the code caused this error:
I realized this was because the library uses this syntax:
Instead of this syntax:
I made these changes to support that fact.
Incidentally, with this change, my code no longer compiled. Typescript returned an error like
I modified my usage to this:
And now everything seems happy.