#ifndef TENSOR_OPS_TOSTRING_H
#define TENSOR_OPS_TOSTRING_H

#include <napi.h>

// Forward declaration
class Tensor;

namespace TensorOps {
  Napi::Value ToString(Tensor* self, const Napi::CallbackInfo& info);
}

#endif
