Skip to content

v0.15.2

Compare
Choose a tag to compare
@metonym metonym released this 13 May 16:29
· 104 commits to main since this release

Fixes

  • dispatched event type without detail should default to null, not any (2dc1d53, #86)

    Input

    dispatch("event");

    Output

    - event: CustomEvent<any>;
    + event: CustomEvent<null>;