Quick-fix
All checks were successful
Setup testing environment and test the code / build (push) Successful in 1m28s

This commit is contained in:
2026-04-08 14:22:58 +02:00
parent cd806b7d17
commit 07d30f7e83
4 changed files with 12 additions and 2 deletions

3
.gitignore vendored
View File

@@ -13,4 +13,5 @@ yarn-error.log*
.DS_Store
.env
.env.*
!.env.example
!.env.example
/dist

6
README.md Normal file
View File

@@ -0,0 +1,6 @@
# Chatenium SDK For TypeScript
A library for interacting with the Chatenium API.
## Quick Start
```aiignore
npm install @chatenium/chatenium-sdk
```

View File

@@ -1,6 +1,6 @@
{
"name": "@chatenium/chatenium-sdk",
"version": "1.0.0",
"version": "1.0.1",
"description": "A library for interacting with the Chatenium API",
"main": "dist/index.js",
"scripts": {

View File

@@ -4,6 +4,9 @@ export interface SDKConfig {
wsUrl: string;
}
declare const process: any;
declare const require: any;
const isNode =
typeof process !== 'undefined' &&
typeof process.versions !== 'undefined' &&