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
/
syntax
/
edge.d.ts
11 lines
(10 loc)
•
298 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
SyntaxNode
}
from
"./node.js"
;
import
{
Relation
}
from
"./relation.js"
;
export
declare
class
SyntaxEdge
{
parent
:
SyntaxNode
;
child
:
SyntaxNode
;
rel
:
Relation
;
constructor
(
parent
:
SyntaxNode
,
child
:
SyntaxNode
,
rel
:
Relation
);
agree
():
void
;
toObject
():
object
; }