UNPKG

gedcom-ts

Version:

A TypeScript library to create genealogy tree data model and to import/export data in a GEDCOM file (.ged).

9 lines (8 loc) 236 B
import { DateAct } from "./DateAct"; export declare class Act { dateAct?: DateAct; place: string; act: string; files: Array<Blob>; constructor(dateAct?: DateAct, place?: string, act?: string, files?: Array<Blob>); }