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

allow listen directive to listen to multiple outputs at once #7

Open
electrovir opened this issue Jul 23, 2022 · 1 comment
Open

allow listen directive to listen to multiple outputs at once #7

electrovir opened this issue Jul 23, 2022 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@electrovir
Copy link
Owner

something like this:

<${MyElement}
    ${listen(MyElement, {
        [MyElement.events.eventName]: (event) => {
            doSomething(event);
        },
        [MyElement.events.otherEventName]: (event) => {
            doSomethingElse(event);
        },
    })}
>
</${MyElement}>
@electrovir electrovir added the enhancement New feature or request label Jul 23, 2022
@electrovir electrovir self-assigned this Jul 23, 2022
@electrovir
Copy link
Owner Author

I don't think it'll be possible to support this while maintaining type safety, but I'll keep it open to encourage trying again in the future.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant