Get the name of a number, even if it's stupidly big.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.

15 wiersze
342 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. }