bigint-mod-arith/types/egcd.d.ts

7 lines
181 B
TypeScript
Raw Normal View History

export interface Egcd {
g: bigint;
x: bigint;
y: bigint;
}
export declare function eGcd(a: number | bigint, b: number | bigint): Egcd;
//# sourceMappingURL=egcd.d.ts.map