Get the name of a number, even if it's stupidly big.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

15 lines
330 B

  1. export default interface NumberSystemNameTable {
  2. units: string[10]
  3. tenPlus: string[10]
  4. tenTimes: string[10]
  5. hundred: string
  6. thousand: string
  7. kiloSpecialUnits: string[10]
  8. kiloUnits: string[10]
  9. kiloTens: string[10]
  10. kiloHundreds: string[10]
  11. kiloThousand: string
  12. kiloEvenSuffix: string
  13. kiloOddSuffix: string
  14. }