Family Chart API Documentation - v0.8.1
    Preparing search index...

    Interface Datum

    interface Datum {
        data: { gender: "M" | "F"; [key: string]: any };
        id: string;
        rels: {
            children?: string[];
            father?: string;
            mother?: string;
            spouses?: string[];
        };
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    Properties

    data: { gender: "M" | "F"; [key: string]: any }
    id: string
    rels: {
        children?: string[];
        father?: string;
        mother?: string;
        spouses?: string[];
    }