Skip to content

Commit

Permalink
Index and export types, drop beta from tag
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmost committed Dec 6, 2021
1 parent 67da614 commit 5c27853
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kava-labs/javascript-sdk",
"version": "5.3.2-beta",
"version": "5.3.2",
"description": "Supports interaction with the Kava blockchain via a REST api",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -30,7 +30,7 @@
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx}": "eslint --cache --fix --max-warnings=0",
"*.{js,ts,jsx,tsx,css,md,yml,json,html}": "prettier --write"
},
"husky": {
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { msg } from './msg';
import { utils } from './utils';
import { crypto } from './crypto';
import { KavaClient } from './client';
export * from './types';

const Kava = {
tx,
Expand Down
4 changes: 4 additions & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export * from './Coin';
export * from './DenomToClaim';
export * from './VoteType';
export * from './Wallet';

0 comments on commit 5c27853

Please sign in to comment.