Remove Unknown Type From Interfaces #294
Labels
module/lib
Related to the main source code
status/invalid
This doesn't seem right
status/wontfix
This will not be worked on
Describe the Bug
The TS interfaces are pretty great.
I found a bug where the TS
unknown
type is used for some of the properties insrc/event/interfaces.ts
.This is a problem because this TS type causes some issues:
Type 'unknown' is not assignable to type '{}'.ts(2322)
We should simply remove the
unknown
type as a possibility for these interfaces.Test code:
The text was updated successfully, but these errors were encountered: