/** * @fileoverview Initial module for CodyMath containing the Greek alphabet. * @version 0.8.0 * @license MIT * * @author Jackson Douglas de Souza * @see {@link https://www.linkedin.com/in/jacksondouglasdsouza/|LinkedIn} * @see {@link https://github.com/jacksondouglasdesouza|GitHub} * * @description * This module is based on universally accepted mathematical constants and tables. * While the initial data is from Schaum's Outlines, the module is cross-referenced * with other major mathematical handbooks to ensure accuracy and completeness. * * @see * Sources & References: * 1. Spiegel, M. R., Lipschutz, S., & Liu, J. "Schaum's Outline of Mathematical Handbook of Formulas and Tables". * 2. National Institute of Standards and Technology (NIST). "Digital Library of Mathematical Functions (DLMF)". * 3. Abramowitz, M., & Stegun, I. A. "Handbook of Mathematical Functions". * 4. Gradshteyn, I. S., & Ryzhik, I. M. "Table of Integrals, Series, and Products". * 5. Wolfram Research. "Wolfram MathWorld". */ /** * Interface defining the structure of a Greek letter. */ interface GreekLetter { /** The English name of the letter. */ name: string; /** The lowercase character. */ lower: string; /** The uppercase character. */ upper: string; } /** * An object containing all 24 letters of the Greek alphabet. * The keys are the English names of the letters for programmatic access. */ export declare const greekAlphabet: { [key: string]: GreekLetter; }; export {};