Closed as not planned
Description
⚙ Compilation target
ES2020
⚙ Library
Intl
Missing / Incorrect Definition
declare namespace Intl {
interface NumberFormat {
format(value: number | bigint): string;
}
}
Sample Code
declare namespace Intl {
interface NumberFormat {
format(value: number | bigint | string): string;
}
}