Skip to content
This repository was archived by the owner on Dec 15, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions baselines/expr-someClass.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
declare class someClass {
constructor(arg: any);
prototypeMethod(p: any): void;
static staticMethod(s: any): void;
static staticMethod(_s: any): void;
static staticNum: number;
constructor(arg: any);
arg: any;
instanceStr: any;
prototypeMethod(_p: any): void;
}
19 changes: 16 additions & 3 deletions baselines/module-ecurve.d.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,34 @@
export class Curve {
constructor(p: any, a: any, b: any, Gx: any, Gy: any, n: any, h: any);
p: any;
a: any;
b: any;
G: any;
n: any;
h: any;
infinity: any;
pOverFour: any;
pLength: any;
isInfinity(Q: any): any;
isOnCurve(Q: any): any;
pointFromX(isOdd: any, x: any): any;
validate(Q: any): any;
}
export class Point {
static decodeFrom(curve: any, buffer: any): any;
static fromAffine(curve: any, x: any, y: any): any;
constructor(curve: any, x: any, y: any, z: any);
curve: any;
x: any;
y: any;
z: any;
compressed: any;
add(b: any): any;
equals(other: any): any;
getEncoded(compressed: any): any;
multiply(k: any): any;
multiplyTwo(j: any, x: any, k: any): any;
negate(): any;
toString(): any;
twice(): any;
static decodeFrom(curve: any, buffer: any): any;
static fromAffine(curve: any, x: any, y: any): any;
}
export function getCurveByName(name: any): any;
Loading