Closed orgads closed 3 months ago
The main class is exported with:
module.exports = exports = Srf;
In Typescript, this aligns with export = Srf, and not export default Srf.
export = Srf
export default Srf
@orgads see issue https://github.com/drachtio/drachtio-srf/issues/181#issuecomment-2389242118 which was apparently created by this PR. Could you have a look and fix?
The main class is exported with:
In Typescript, this aligns with
export = Srf
, and notexport default Srf
.