Files
topola-viewer/src/parse-gedcom.d.ts
Przemek Wiech 018bbe9ff0 First version of side panel with person details.
Currently hidden. Can be shown by adding &sidePanel=true to URL.
Will be shown by default when it's ready.
2019-03-06 22:58:39 +01:00

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[];
}