In the file types/integer.d.ts the toString method has a mandatory radix field i.e.
toString(radix: number): string
This should not be the case as the toString function in src/integer.js defaults to 10
i.e.
radix = radix || 10
Can we update the declaration to
toString(radix?: number): string