@ondewo/s2t-client-angular
v5.7.0
Published
Ondewo speech to text client library for angular
Downloads
497
Maintainers
Readme
Overview
@ondewo/s2t-client-angular
is a compiled version of the ONDEWO S2T API using the ONDEWO PROTO COMPILER. Here you can find the S2T 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/s2t-client-angular
Using GitHub:
git clone https://github.com/ondewo/ondewo-s2t-client-angular.git ## Clone repository
cd ondewo-s2t-client-angular ## Change into repo-directoy
make setup_developer_environment_locally ## Install dependencies
Package structure
npm
├── api
│ └── ondewo
│ └── s2t
│ ├── speech-to-text.pbconf.d.ts
│ ├── speech-to-text.pb.d.ts
│ └── speech-to-text.pbsc.d.ts
├── esm2022
│ ├── api
│ │ └── ondewo
│ │ └── s2t
│ │ ├── speech-to-text.pbconf.mjs
│ │ ├── speech-to-text.pb.mjs
│ │ └── speech-to-text.pbsc.mjs
│ ├── ondewo-s2t-client-angular.mjs
│ └── public-api.mjs
├── fesm2022
│ ├── ondewo-s2t-client-angular.mjs
│ └── ondewo-s2t-client-angular.mjs.map
├── ondewo-s2t-api
│ └── README.md
├── index.d.ts
├── LICENSE
├── package.json
├── public-api.d.ts
└── README.md