Skip to content

Commit 6ebebb5

Browse files
authored
Chore/add export (#114)
* chore: add missing export * chore: bump version * chore: format
1 parent c09939c commit 6ebebb5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanglelabs/ssimon",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "SSIMON is an open, interoperable, and convenient software to manage DIDs and credentials",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export * from "./";
22
export * from "./NetworkAdapter/CredentialsManager";
33
export * from "./NetworkAdapter/IdentityAccount";
4+
export * from "./NetworkAdapter/index.types";
45
export * from "./Storage";
56
export * from "./Storage/GenericStore/index";
67
export * from "./Storage/GenericStore/index.types";

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"strictBindCallApply": false,
1818
"forceConsistentCasingInFileNames": false,
1919
"noFallthroughCasesInSwitch": false,
20-
"emitDeclarationOnly": false,
20+
"emitDeclarationOnly": false,
2121
"declarationMap": true
2222
},
2323
"include": ["src/**/*"],

0 commit comments

Comments
 (0)