| 207 | |
| 208 | |
| 209 | EXTERN_C_START |
| 210 | static napi_value Init(napi_env env, napi_value exports) |
| 211 | { |
| 212 | napi_property_descriptor desc[] = { |
| 213 | { "TestNativeMMKV", nullptr, TestNativeMMKV, nullptr, nullptr, nullptr, napi_default, nullptr } |
| 214 | }; |
| 215 | napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); |
| 216 | return exports; |
| 217 | } |
| 218 | EXTERN_C_END |
| 219 | |
| 220 | static napi_module demoModule = { |
nothing calls this directly
no outgoing calls
no test coverage detected