form-graph
    Preparing search index...

    Interface MultiControllerProps<G, Ks>

    interface MultiControllerProps<
        G extends AnyGraph,
        Ks extends readonly GraphFieldName<G>[],
    > {
        graph: G;
        names: Ks;
        render: (
            props: { values: { [K in string]: GraphFieldValue<G, K> | undefined } },
        ) => ReactElement<any, string | JSXElementConstructor<any>> | null;
        store?: AnyStore;
    }

    Type Parameters

    • G extends AnyGraph
    • Ks extends readonly GraphFieldName<G>[]
    Index
    graph: G
    names: Ks
    render: (
        props: { values: { [K in string]: GraphFieldValue<G, K> | undefined } },
    ) => ReactElement<any, string | JSXElementConstructor<any>> | null
    store?: AnyStore