UNPKG

@yar.ua/numerals

Version:

Number to text - Inflector for Ukrainian numerals

11 lines (10 loc) 298 B
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; }