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