#ifndef TENSOR_OPS_SUB_H
#define TENSOR_OPS_SUB_H

#include <napi.h>

// Forward declaration
class Tensor;

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

#endif
