@tencentcloud/tuiroom-engine-js 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (7) hide show
  1. package/README.md +7 -14
  2. package/index.cjs.js +3160 -3157
  3. package/index.d.ts +1092 -1092
  4. package/index.esm.js +3160 -3157
  5. package/index.js +3160 -3157
  6. package/package.json +1 -1
  7. package/types.d.ts +459 -459
package/README.md CHANGED
@@ -10,28 +10,21 @@ TUIRoomEngine Web SDK 依托腾讯云 [实时音视频 TRTC](https://cloud.tence
10
10
 
11
11
  ### 安装
12
12
 
13
- 使用 npm:
14
-
15
13
  ```bash
16
- npm i tuiroom-engine-js --save
17
- ```
14
+ // with npm
15
+ npm i @tencentcloud/tuiroom-engine-js --save
18
16
 
19
- 使用 yarn
17
+ // with yarn
18
+ yarn add @tencentcloud/tuiroom-engine-js
20
19
 
21
- ```bash
22
- yarn add tuiroom-engine-js
23
- ```
24
-
25
- 使用 pnpm:
26
-
27
- ```bash
28
- pnpm i tuiroom-engine-js --save
20
+ // with pnpm
21
+ pnpm i @tencentcloud/tuiroom-engine-js --save
29
22
  ```
30
23
 
31
24
  ### 示例代码
32
25
 
33
26
  ```javascript
34
- import TUIRoomEngine from 'tuiroom-engine-js';
27
+ import TUIRoomEngine from '@tencentcloud/tuiroom-engine-js';
35
28
 
36
29
  let roomEngine = null;
37
30