bringapp
    Preparing search index...

    Type Alias DynamicEntityPropsClientRenderProps<T, P>

    Represents the properties for rendering a dynamic entity.

    type DynamicEntityPropsClientRenderProps<T = object, P = object> = {
        entityProps: DynamicEntityProps<T>;
        params?: GetDynamicEntityPropsParams<P>;
        ref?: (node?: Element | null) => void;
    }

    Type Parameters

    • T = object

      Additional properties type

    • P = object

      Additional parameters type

    Index

    Properties

    entityProps: DynamicEntityProps<T>

    The dynamic entity properties.

    params?: GetDynamicEntityPropsParams<P>

    The parameters for retrieving the dynamic entity properties.

    ref?: (node?: Element | null) => void