mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-07-23 04:01:52 +00:00
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:
12
src/parse-gedcom.d.ts
vendored
Normal file
12
src/parse-gedcom.d.ts
vendored
Normal 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[];
|
||||
}
|
||||
Reference in New Issue
Block a user