nano-pow 5.1.2 → 5.1.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/dist/types.d.ts +4 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -56,10 +56,10 @@ export { NanoPow as default }
|
|
|
56
56
|
* @param {number} [effort=0x4] - GPU load when generating work. Larger values are not necessarily better since they can quickly overwhelm the GPU. Default: 0x4
|
|
57
57
|
*/
|
|
58
58
|
export type NanoPowOptions = {
|
|
59
|
-
api
|
|
60
|
-
debug
|
|
61
|
-
difficulty
|
|
62
|
-
effort
|
|
59
|
+
api?: unknown
|
|
60
|
+
debug?: unknown
|
|
61
|
+
difficulty?: unknown
|
|
62
|
+
effort?: unknown
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
/**
|