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

Typings for createEventDispatcher #5260

Merged
merged 1 commit into from
Aug 12, 2020
Merged

Commits on Aug 12, 2020

  1. Typings for createEventDispatcher

    Makes it possible to explicitly type which events can be dispatched like so:
    
    ```ts
    const bla2 = createEventDispatcher<{click: boolean}>();
    bla2('click', ''); // error, type string not assignable to type boolean
    bla2('qwd', true); // error, "qwd" not assignable to "click"
    ```
    
    sveltejs#5211
    dummdidumm authored Aug 12, 2020
    Configuration menu
    Copy the full SHA
    0e9158b View commit details
    Browse the repository at this point in the history