Skip to content

Commit 5c27853

Browse files
committed
Index and export types, drop beta from tag
1 parent 67da614 commit 5c27853

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kava-labs/javascript-sdk",
3-
"version": "5.3.2-beta",
3+
"version": "5.3.2",
44
"description": "Supports interaction with the Kava blockchain via a REST api",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -30,7 +30,7 @@
3030
"typescript": "^4.4.4"
3131
},
3232
"lint-staged": {
33-
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
33+
"*.{js,jsx,ts,tsx}": "eslint --cache --fix --max-warnings=0",
3434
"*.{js,ts,jsx,tsx,css,md,yml,json,html}": "prettier --write"
3535
},
3636
"husky": {

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { msg } from './msg';
33
import { utils } from './utils';
44
import { crypto } from './crypto';
55
import { KavaClient } from './client';
6+
export * from './types';
67

78
const Kava = {
89
tx,

src/types/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export * from './Coin';
2+
export * from './DenomToClaim';
3+
export * from './VoteType';
4+
export * from './Wallet';

0 commit comments

Comments
 (0)