5.3.0 • Published 21 days ago

@ondewo/t2s-client-typescript v5.3.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
21 days ago

Overview

@ondewo/t2s-client-typescript is a compiled version of the ONDEWO T2S API using the ONDEWO PROTO COMPILER. Here you can find the T2S API documentation.

ONDEWO APIs use Protocol Buffers version 3 (proto3) as their Interface Definition Language (IDL) to define the API interface and the structure of the payload messages. The same interface definition is used for gRPC versions of the API in all languages.

Setup

Using NPM:

npm i --save @ondewo/t2s-client-typescript

Using GitHub:

git clone https://github.com/ondewo/ondewo-t2s-client-typescript.git ## Clone repository
cd ondewo-t2s-client-typescript                                      ## Change into repo-directoy
make setup_developer_environment_locally                             ## Install dependencies

Package structure

npm
├── api
│   ├── google
│   │   └── protobuf
│   │       ├── empty_pb.d.ts
│   │       └── empty_pb.js
│   └── ondewo
│       └── t2s
│           ├── text-to-speech_grpc_web_pb.d.ts
│           ├── text-to-speech_grpc_web_pb.js
│           ├── text-to-speech_pb.d.ts
│           └── text-to-speech_pb.js
├── LICENSE
├── package.json
├── public-api.d.ts
├── public-api.js
└── README.md