wix-incubator / corvid-types

Type definitions for Corvid by Wix
MIT License
5 stars 3 forks source link

Bug: wrong event type in HtmlComponent () #20

Open shoonia opened 4 years ago

shoonia commented 4 years ago

Wrong event type for IFrame and HtmlComponent

We can return any custom data from HtmlComponent. It's not HtmlComponentMessageEvent like another hendlers.

$w("#myHtmlComponent").onMessage( (event) => {
  let receivedMessage = event.data.someDataHere; // My custom data
} );

error:

Property 'someDataHere' does not exist on type 'Element'.ts(2339)

use

"devDependencies": {
    "corvid-cli": "^0.2.2",
    "corvid-types": "^0.1.90"
}