我正在尝试将Google's speech-to-text npm包导入我的React Native项目中,但是我无法做到。在node.js上有一个示例文档可以导入(需要),但是我无法使其在React Native上运行,这是Google页面上的示例:
public_html
我已经通过npm安装了它,但是无法使用上述需求以及与import都不使用来调用它:
// Imports the Google Cloud client library
const speech = require('@google-cloud/speech');
// Creates a client
const client = new speech.SpeechClient();
它只是打印出它们是未定义的,我应该如何导入它?