crypto-layout-utils 1.9.1 → 1.9.2

Sign up to get free protection for your applications and to get access to all the features.
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
  },