mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Co-authored-by: Kai Tamkun <kai@tamkun.io> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> Co-authored-by: Ciro Spaciari <ciro.spaciari@gmail.com> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Co-authored-by: 190n <190n@users.noreply.github.com>
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
|