mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 09:42:55 +00:00
9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
/**
|
|
* We manually create binding.d.ts and re-export everything of the dts generated by napi to fix the cjs-esm interop
|
|
*/
|
|
|
|
import * as binding from "./napi-binding";
|
|
|
|
export * from "./napi-binding"
|
|
export default binding;
|