我试图从命令行(mac)运行节点脚本,这会在此行引发错误
type APIOptions = { //<--error
server?: string,
feeCushion?: number,
trace?: boolean,
proxy?: string,
timeout?: number
}
这是错误:
type APIOptions = {
^^^^^^^^^^
SyntaxError: Unexpected identifier
那么这个type
关键字无法正常播放的处理方式是什么?
这个脚本是ripple-lib,顺便说一句。