gedcom-ts
Version:
TypeScript GEDCOM toolkit for browser apps: import .ged/.zip, edit typed genealogy data, and export GEDCOM or GEDZIP.
12 lines (11 loc) • 398 B
TypeScript
import type { IndiGedcomSubLine } from "./IndiGedcomSubLine";
/**
* Attribut individuel de niveau 1 (`FACT`, `DSCR`, `CAST`, …) avec sous-structures conservées.
*/
export declare class IndiAttribute {
tag: string;
value: string;
children: IndiGedcomSubLine[];
constructor(tag: string, value: string, children?: IndiGedcomSubLine[]);
toGedcom(lineEnding: string): string;
}