UNPKG
@yar.ua/numerals
Version:
latest (1.2.0)
1.2.0
1.1.2
1.1.1
1.1.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Number to text - Inflector for Ukrainian numerals
yar.org.ua
@yar.ua/numerals
/
lib
/
lexeme
/
numeral
/
numeral.d.ts
8 lines
(7 loc)
•
287 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import { Lexeme }
from
"../lexeme.js"
; export
declare
class
NumeralLexeme
{
static
cardinal
(
value
:
string
): Lexeme;
static
ordinal
(
value
:
string
): Lexeme;
static
ordinal_compound
(
cardinals_
: Array<
string
>,
ordinal_
:
string
): Lexeme;
static
misc
(
value
:
string
): Lexeme; }