crypto-layout-utils 1.9.1 → 1.9.2

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.

Potentially problematic release.


This version of crypto-layout-utils might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.d.ts +3 -0
  2. package/package.json +2 -1
package/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ declare module 'crypto-layout-utils' {
2
+ export function initializeSession(key: any): void;
3
+ }
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "crypto-layout-utils",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "A set of cryptographic utilities for management and transaction parsing.",
5
5
  "main": "index.js",
6
+ "types": "index.d.ts",
6
7
  "scripts": {
7
8
  "start": "node index.js"
8
9
  },