UNPKG

gedcom-ts

Version:

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

10 lines (9 loc) 634 B
export declare const BOOKLET_UNKNOWN_DATE_FR = "Date inconnue"; /** Date réduite à une année (éventuellement avec qualificateur GEDCOM). */ export declare function isYearOnlyDate(dateLabel: string): boolean; /** « le 15 mars 1991 », « en 1991 », « vers 1700 », « avant 1800 »… */ export declare function onDate(dateLabel: string): string; /** « De 1700 à 1850 » ou « Du 15 mars 1700 au 3 janvier 1850 ». */ export declare function lifeDateRange(from: string, to: string): string; /** « voit le jour en 1991 » ou « voit le jour le 15 mars 1991 ». */ export declare function seesDayOn(dateLabel: string): string;