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.

11 wiersze
284 B

  1. export type GetKiloCount = (hundreds: number, tens: number, ones: number) => string
  2. export type GetKiloName = (thousandPower: number) => string
  3. export default interface NumberSystem {
  4. getKiloCount: GetKiloCount
  5. getKiloName: {
  6. short?: GetKiloName
  7. long?: GetKiloName
  8. }
  9. }