async-source
Advanced tools
Comparing version 1.1.0 to 1.1.1
export declare type ResponseData<T> = T | null; | ||
export declare type ServiceMethod<T = any> = (...args: Array<any>) => Promise<T>; | ||
export declare type ErrorHandler = (error?: Error) => void; | ||
export declare type ErrorHandler = (error: Error) => void; | ||
declare class AsyncSource<T> { | ||
@@ -5,0 +5,0 @@ readonly onError: ErrorHandler; |
{ | ||
"name": "async-source", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "async requests wrapper", | ||
@@ -40,4 +40,4 @@ "main": "dist/index.min.js", | ||
"devDependencies": { | ||
"uglify-js": "^3.13.3" | ||
"uglify-js": "^3.14.3" | ||
} | ||
} |
29462