gedcom-ts
Version:
TypeScript GEDCOM toolkit for browser apps: import .ged/.zip, edit typed genealogy data, and export GEDCOM or GEDZIP.
14 lines (13 loc) • 1.08 kB
TypeScript
import type { BookletLocale } from "./booklet-locale";
export type { ParsedPlace } from "./booklet-place-factory";
export declare function parsePlaceLabel(label: string, locale?: BookletLocale): import("./booklet-place-factory").ParsedPlace;
export declare function placeCore(label: string, locale?: BookletLocale): string;
export declare function afterDateLocation(dateLabel: string, placeLabel: string, locale?: BookletLocale): string;
export declare function atLocation(placeLabel: string, locale?: BookletLocale): string;
export declare function birthDeathLocationPhrases(birthDate: string, birthPlace: string, deathDate: string, deathPlace: string, locale?: BookletLocale): {
readonly birth: string;
readonly death: string;
};
export declare function lifeRangeLocation(birthPlace: string, deathPlace: string, locale?: BookletLocale): string;
export declare function marriageWhenWhere(dateLabel: string, placeLabel: string, locale?: BookletLocale): string;
export declare function embedMarriageWhenWhere(label: string | null | undefined, locale?: BookletLocale): string;