mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 03:18:53 +00:00
13 lines
250 B
C++
13 lines
250 B
C++
#pragma once
|
|
|
|
// Functions exported to JS that make a class available with some interesting
|
|
// properties and methods
|
|
|
|
#include <napi.h>
|
|
|
|
namespace napitests {
|
|
|
|
void register_class_test(Napi::Env env, Napi::Object exports);
|
|
|
|
} // namespace napitests
|