Skip to content

Commit

Permalink
Fix TypeScript typings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kshetline committed Aug 6, 2019
1 parent ebf84e3 commit bdae70f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ export function hasNativeBigInt(): boolean;

export function hasBigDecimal(): boolean;

export function setBigInt(bigIntClass: Function | boolean): void;
export function setBigInt(bigIntClass: any): void;

export function setBigDecimal(bigDoubleClass: Function): void;
export function setBigDecimal(bigDoubleClass: any): void;
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "json-z",
"version": "3.0.3",
"version": "3.0.4",
"description": "JSON for everyone.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "lib/cli.js",
"browser": "dist/index.js",
"files": [
Expand Down

0 comments on commit bdae70f

Please sign in to comment.