@keplr-wallet/router
Advanced tools
Comparing version 0.10.4-rc.0 to 0.10.4-rc.3
@@ -5,2 +5,3 @@ export * from "./router"; | ||
export * from "./types"; | ||
export * from "./error"; | ||
export * from "./message"; | ||
@@ -7,0 +8,0 @@ export * from "./constant"; |
@@ -17,2 +17,3 @@ "use strict"; | ||
__exportStar(require("./types"), exports); | ||
__exportStar(require("./error"), exports); | ||
__exportStar(require("./message"), exports); | ||
@@ -19,0 +20,0 @@ __exportStar(require("./constant"), exports); |
export interface Result { | ||
error?: string; | ||
/** | ||
* NOTE: If `error` is of type `{ module:string; code: number; message: string }`, | ||
* it should be considered and processed as `KeplrError`. | ||
*/ | ||
error?: string | { | ||
module: string; | ||
code: number; | ||
message: string; | ||
}; | ||
return?: any; | ||
} |
{ | ||
"name": "@keplr-wallet/router", | ||
"version": "0.10.4-rc.0", | ||
"version": "0.10.4-rc.3", | ||
"main": "build/index.js", | ||
@@ -19,3 +19,3 @@ "author": "chainapsis", | ||
}, | ||
"gitHead": "6bc192531576a4553b164c35882baf838e73b8c5" | ||
"gitHead": "3f7ae10d991b2e04acefb7328bb0afe5c1c5e998" | ||
} |
@@ -5,2 +5,3 @@ export * from "./router"; | ||
export * from "./types"; | ||
export * from "./error"; | ||
export * from "./message"; | ||
@@ -7,0 +8,0 @@ export * from "./constant"; |
export interface Result { | ||
error?: string; | ||
/** | ||
* NOTE: If `error` is of type `{ module:string; code: number; message: string }`, | ||
* it should be considered and processed as `KeplrError`. | ||
*/ | ||
error?: string | { module: string; code: number; message: string }; | ||
return?: any; | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
53086
54
840