-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
25 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
type JSONValue = | ||
| string | ||
| number | ||
| boolean | ||
| { [x: string]: JSONValue } | ||
| Array<JSONValue> | ||
|
||
export declare function crosshash(obj: JSONValue): string; | ||
|
||
export declare function crossjson(obj: JSONValue): string; | ||
|
||
export declare class CrossHashError extends Error {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "crosshash" | ||
version = "0.2.0" | ||
version = "0.3.1" | ||
authors = ["Jakub Roztocil <[email protected]>"] | ||
description = "Stable, cross-platform JSON serialization and hashing for Python and JavaScript." | ||
license = "MIT" | ||
|