Nacho Ruiz Martin
12/20/2023, 7:16 AM@JsExport
are exported in this form:
export declare function functionName(_this_: ExtendedClass);
Am I right to assume that the correct way of invoking this from typescript is:
const class: ExtendedClass
...
functionName(class)
?
If so, I’m getting a runtime error:
TypeError: (0 , module__WEBPACK_IMPORTED_MODULE_2__.functionName is not a function
Thanks!turansky
12/20/2023, 9:37 AMArtem Kobzar
12/20/2023, 10:38 AMNacho Ruiz Martin
12/20/2023, 10:40 AMArtem Kobzar
12/20/2023, 10:54 AMEdoardo Luppi
12/20/2023, 10:58 AMNacho Ruiz Martin
12/20/2023, 10:59 AMNacho Ruiz Martin
12/21/2023, 7:29 AMNacho Ruiz Martin
12/24/2023, 9:29 AMArtem Kobzar
12/27/2023, 9:29 AMNacho Ruiz Martin
12/27/2023, 10:01 AM