Hi,
so I have a function like this
function makeListener(event, fn) {}
then I call it like ```js
makeListener("OpenContainer", (event) => {
})
and I have a .d.ts that has a `declare namespace Events {`
that has a `interface OpenContainer extends BaseEvent {`
So, I'd like to make event's type OpenContainer, how would I go about doing that?