mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 11:29:02 +00:00
13 lines
280 B
C++
13 lines
280 B
C++
#pragma once
|
|
|
|
// Includes both some callbacks for module.js to use, and a long pure-C++ test
|
|
// of Node-API conversion functions
|
|
|
|
#include "napi_with_version.h"
|
|
|
|
namespace napitests {
|
|
|
|
void register_conversion_tests(Napi::Env env, Napi::Object exports);
|
|
|
|
} // namespace napitests
|