Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reexport Fraction types from fraction.js instead of using custom one #3330

Merged
merged 2 commits into from
Dec 11, 2024
Merged
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
9 changes: 3 additions & 6 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { Decimal } from 'decimal.js'
import { Fraction } from 'fraction.js'

export { Fraction }

export as namespace math

Expand Down Expand Up @@ -4049,12 +4052,6 @@ export interface MatrixCtor {
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface BigNumber extends Decimal {}

export interface Fraction {
s: bigint
n: bigint
d: bigint
}

export interface Complex {
re: number
im: number
Expand Down
Loading