export {}; declare global { export interface Number { numberToString(): string; nullableNumberToString(this: number | null | undefined): string; } }