/** * Display and Character Constants * * Constants for display formatting, charting, * and character code operations. * * @module display/constants */ /** * Display and chart formatting constants */ export declare const DISPLAY_CONSTANTS: { /** * Maximum length for chart bar display */ readonly CHART_BAR_MAX_LENGTH: 40; /** * Length of chart separator lines */ readonly CHART_SEPARATOR_LENGTH: 60; /** * Number of decimal places for display precision */ readonly DECIMAL_PRECISION: 3; }; /** * Character code constants */ export declare const CHAR_CODES: { /** * ASCII code for lowercase 'a' */ readonly LOWERCASE_A: 97; /** * Number of letters in the alphabet */ readonly ALPHABET_SIZE: 26; /** * ASCII code for space character */ readonly SPACE: 32; }; /** * Type for display constant values */ export type DisplayConstant = (typeof DISPLAY_CONSTANTS)[keyof typeof DISPLAY_CONSTANTS]; /** * Type for character code values */ export type CharCode = (typeof CHAR_CODES)[keyof typeof CHAR_CODES]; //# sourceMappingURL=constants.d.ts.map