mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
12 lines
246 B
C++
12 lines
246 B
C++
#pragma once
|
|
|
|
// Exposes functions to JavaScript to test the `napi_get_value_string_*` methods
|
|
|
|
#include "napi_with_version.h"
|
|
|
|
namespace napitests {
|
|
|
|
void register_get_string_tests(Napi::Env env, Napi::Object exports);
|
|
|
|
} // namespace napitests
|