mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-03-03 06:11:45 +00:00
Currently hidden. Can be shown by adding &sidePanel=true to URL. Will be shown by default when it's ready.
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
// Data type definitions for the parse-gedcom library.
|
|
declare module 'parse-gedcom' {
|
|
interface GedcomEntry {
|
|
level: number;
|
|
pointer: string;
|
|
tag: string;
|
|
data: string;
|
|
tree: GedcomEntry[];
|
|
}
|
|
|
|
export function parse(input: string): GedcomEntry[];
|
|
}
|