mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
export types
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@libsem/identity",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"description": "work with zk identites",
|
||||
"main": "dist/index.node.js",
|
||||
"types": "dist/types/index.d.ts",
|
||||
@@ -34,6 +34,5 @@
|
||||
"rimraf": "^3.0.2",
|
||||
"rollup": "^2.56.2",
|
||||
"rollup-plugin-typescript2": "^0.30.0"
|
||||
},
|
||||
"gitHead": "0f54813412abadc7c5646a6a5ec8f3e2b6c1b5a7"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import ZkIdentity from './identity';
|
||||
import { Identity } from "@libsem/types";
|
||||
|
||||
export {
|
||||
ZkIdentity
|
||||
}
|
||||
ZkIdentity,
|
||||
Identity
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@libsem/protocols",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"description": "",
|
||||
"main": "dist/index.node.js",
|
||||
"types": "dist/types/index.d.ts",
|
||||
@@ -34,6 +34,5 @@
|
||||
"rollup-plugin-terser": "^7.0.2",
|
||||
"rollup-plugin-typescript2": "^0.30.0",
|
||||
"typescript": "^4.4.4"
|
||||
},
|
||||
"gitHead": "0f54813412abadc7c5646a6a5ec8f3e2b6c1b5a7"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,10 +2,15 @@ import Semaphore from './semaphore';
|
||||
import Rln from './rln';
|
||||
import NRln from './nRln';
|
||||
import { generateMerkleProof } from './utils';
|
||||
import { Identity, MerkleProof, IProof } from "@libsem/types";
|
||||
|
||||
export {
|
||||
|
||||
export {
|
||||
Semaphore,
|
||||
Rln,
|
||||
Rln,
|
||||
NRln,
|
||||
generateMerkleProof
|
||||
}
|
||||
generateMerkleProof,
|
||||
Identity,
|
||||
MerkleProof,
|
||||
IProof
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user