Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMinkov committed Nov 9, 2022
1 parent 2f18bf6 commit db31df0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/snarky.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ declare class Field {
*/

static toJSON(x: Field): string;
static fromJSON(x: string): Field;
static fromJSON(x: string | number): Field;

static check(x: Field): void;

Expand Down Expand Up @@ -635,7 +635,7 @@ declare class Scalar {
static random(): Scalar;

static toJSON(x: Scalar): string;
static fromJSON(x: string): Scalar;
static fromJSON(x: string | number): Scalar;
static check(x: Scalar): void;
}

Expand Down

0 comments on commit db31df0

Please sign in to comment.