lx-source-type 2.0.2 → 2.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lx-source-type",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "type": "module",
5
5
  "author": "Ceale",
6
6
  "license": "MIT",
package/type.d.ts CHANGED
@@ -126,7 +126,7 @@ export declare namespace LX {
126
126
  }
127
127
 
128
128
  export interface RequestCallback {
129
- (err: null, resp: RequestResponse | null, body: any): void
129
+ (err: any, resp: RequestResponse | null, body: any): void
130
130
  }
131
131
 
132
132
  export interface OnEvent {