wima
    Preparing search index...

    Type Alias GraphSerial<T, U>

    type GraphSerial<T = unknown, U = unknown> = {
        directed: boolean;
        edges: EdgeSerial<U>[];
        nodes: NodeSerial<T>[];
    }

    Type Parameters

    • T = unknown
    • U = unknown
    Index

    Properties

    Properties

    directed: boolean
    edges: EdgeSerial<U>[]
    nodes: NodeSerial<T>[]