@tarojs/taro 3.6.2-canary.2 → 3.6.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/taro",
3
- "version": "3.6.2-canary.2",
3
+ "version": "3.6.3",
4
4
  "description": "Taro framework",
5
5
  "homepage": "https://github.com/nervjs/taro/tree/master/packages/taro#readme",
6
6
  "main": "index.js",
@@ -21,8 +21,8 @@
21
21
  "author": "O2Team",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@tarojs/api": "3.6.2-canary.2",
25
- "@tarojs/runtime": "3.6.2-canary.2"
24
+ "@tarojs/api": "3.6.3",
25
+ "@tarojs/runtime": "3.6.3"
26
26
  },
27
27
  "peerDependenciesMeta": {
28
28
  "@types/react": {
@@ -306,12 +306,8 @@ declare module '../../index' {
306
306
  namespace onChunkReceived {
307
307
  /** Transfer-Encoding Chunk Received 事件的回调函数 */
308
308
  type Callback = (result: CallbackResult) => void
309
- interface CallbackResult {
310
- /** 开发者服务器每次返回新 chunk 时的 Response */
311
- res: Response
312
- }
313
309
  /** 开发者服务器每次返回新 chunk 时的 Response */
314
- interface Response {
310
+ interface CallbackResult {
315
311
  /** 返回的chunk buffer */
316
312
  data: ArrayBuffer
317
313
  }