form-graph
    Preparing search index...

    Interface TypedControllerProps<R, K>

    interface TypedControllerProps<
        R extends CodecRegistry,
        K extends keyof R & string,
    > {
        name: K;
        render: (
            props: ControllerRenderProps<InferDefValue<R[K]>, InferDefMeta<R[K]>>,
        ) => ReactElement<any, string | JSXElementConstructor<any>> | null;
        store?: AnyStore;
    }

    Type Parameters

    • R extends CodecRegistry
    • K extends keyof R & string
    Index
    name: K
    render: (
        props: ControllerRenderProps<InferDefValue<R[K]>, InferDefMeta<R[K]>>,
    ) => ReactElement<any, string | JSXElementConstructor<any>> | null
    store?: AnyStore