@technobuddha/library
Version:
A large library of useful functions
10 lines (9 loc) • 481 B
TypeScript
import { type Numbering } from './numbering.ts';
/**
* Converts a numeric integer into its string representation.
* @param input - The numeric integer to be converted.
* @param options - Configuration options for numbering.
* @returns The string representation of the input number, formatted according to the provided options.
* @internal
*/
export declare function fabricateNumericInteger(input: number, options: Pick<Numbering, 'ordinal' | 'precision' | 'shift'>): string;