gedcom-ts
Version:
TypeScript GEDCOM toolkit for browser apps: import .ged/.zip, edit typed genealogy data, and export GEDCOM or GEDZIP.
13 lines (12 loc) • 434 B
TypeScript
/**
* Rebuilds one logical note string from stored lines (inline text and/or NOTE/CONC/CONT sub-lines).
*/
export declare function mergeNotePayloadLines(lines: string[]): string;
export declare function gedcomFragmentForNote(note: {
lines?: string[];
}, noteLevel: number): string;
export declare function gedcomFragmentForNotes(notes: {
list: {
lines?: string[];
}[];
} | undefined, noteLevel: number): string;