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;
|