read-gedcom
Version:
Gedcom file reader
14 lines (13 loc) • 314 B
TypeScript
import { TreeNode } from './TreeNode';
import { TreeIndexRoot } from './TreeIndexRoot';
/**
* The (virtual) root node of a Gedcom file.
*/
export interface TreeNodeRoot extends TreeNode {
tag: null;
pointer: null;
value: null;
indexSource: -1;
indexRelative: 0;
_index?: TreeIndexRoot;
}