Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type of Engine.on() is wrong #295

Open
UncleSamSwiss opened this issue Mar 9, 2022 · 1 comment
Open

Type of Engine.on() is wrong #295

UncleSamSwiss opened this issue Mar 9, 2022 · 1 comment
Milestone

Comments

@UncleSamSwiss
Copy link

If you register an event handler on a specific event (i.e. Engine.on("my-event", ...)), the first argument of the method will be the params of the Event definition (type: Record<string, any>), not the Event object itself.

I'm not sure if this only the case for specific events or more generally the EventHandler:

export type EventHandler = (
event: Event,
almanac: Almanac,
ruleResult: RuleResult
) => void;

@greebowarrior
Copy link

I can't speak for the developer (wherever they are), but I think this is intentional, because if you add a listener for a specific 'known' event, the only data you wouldn't know is the event's params. I could be wildly wrong, but it does feel like it should be that way

@chris-pardy chris-pardy added this to the version 7 milestone Aug 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants