| 282 | } |
| 283 | |
| 284 | Napi::Value TModel::GetModelTreeCount(const Napi::CallbackInfo& info) { |
| 285 | Napi::Env env = info.Env(); |
| 286 | const size_t count = GetTreeCount(this->Handle); |
| 287 | |
| 288 | return Napi::Number::New(env, count); |
| 289 | } |
| 290 | |
| 291 | Napi::Value TModel::GetModelDimensionsCount(const Napi::CallbackInfo& info) { |
| 292 | Napi::Env env = info.Env(); |
nothing calls this directly
no test coverage detected