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.
This commit is contained in:
Przemek Wiech
2019-03-06 22:58:39 +01:00
parent 730642fb4e
commit 018bbe9ff0
7 changed files with 235 additions and 32 deletions

12
src/parse-gedcom.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
// 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[];
}