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) 648 B
import type { BookletLocale } from './booklet-locale'; export type { BookletMessages } from './booklet-messages-types'; export { ensureBookletLocale, clearBookletLocaleCache, isBookletLocaleLoaded } from './booklet-locale-loader'; export declare function getBookletMessages(locale?: BookletLocale): import("./booklet-messages-types").BookletMessages; export declare function actTypeLabel(type: string, locale?: BookletLocale): string; /** Loads locale data then returns messages (convenience for async call sites). */ export declare function loadBookletMessages(locale?: BookletLocale): Promise<import("./booklet-messages-types").BookletMessages>;