7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
|
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
|