1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2024-10-27 20:34:12 +00:00

Merge pull request #211 from jon-ressio/feature/no-toStringTag

Remove toStringTag declaration for type compatibility
This commit is contained in:
Michael M 2022-12-04 12:56:21 +00:00 committed by GitHub
commit 0f148f9787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

1
decimal.d.ts vendored
View File

@ -56,7 +56,6 @@ export declare class Decimal {
readonly d: number[]; readonly d: number[];
readonly e: number; readonly e: number;
readonly s: number; readonly s: number;
private readonly toStringTag: string;
constructor(n: Decimal.Value); constructor(n: Decimal.Value);

1
decimal.global.d.ts vendored
View File

@ -77,7 +77,6 @@ export declare class Decimal {
readonly d: number[]; readonly d: number[];
readonly e: number; readonly e: number;
readonly s: number; readonly s: number;
private readonly toStringTag: string;
constructor(n: DecimalValue); constructor(n: DecimalValue);