declare global { interface Number { /** * Returns the character represented by the Unicode value of the number (using `String.fromCharCode`). * * @example * ```typescript * 65.toChar(); // => 'A' * 97.toChar(); // => 'a' * ``` * * @see {@link String.fromCharCode} */ toChar(): string; } } export {}; //# sourceMappingURL=toChar.d.ts.map