UNPKG

gedcom-ts

Version:

TypeScript GEDCOM toolkit for browser apps: import .ged/.zip, edit typed genealogy data, and export GEDCOM or GEDZIP.

8 lines (7 loc) 708 B
import type { BookletLocale } from './booklet-locale'; import type { BookletPersonEntry } from './booklet-person'; import type { BookletChapter, BookletDetailLevel, BookletFamilyUnit } from './booklet-structure'; export declare function buildChapterIntroNarrative(chapter: BookletChapter, locale?: BookletLocale): string; export declare function buildFamilyNarrative(family: BookletFamilyUnit, detailLevel: BookletDetailLevel, locale?: BookletLocale): readonly string[]; export declare function buildPersonSummaryNarrative(entry: BookletPersonEntry, locale?: BookletLocale): string; export declare function buildPersonDetailedNarratives(entry: BookletPersonEntry, locale?: BookletLocale): readonly string[];