Юниверс DG SDK UI
v2.15.0

Интерфейс ReactComponentElement<T, P>

interface ReactComponentElement<
    T extends keyof JSX.IntrinsicElements
    | JSXElementConstructor<any>,
    P = Pick<
        ComponentProps<T>,
        Exclude<keyof ComponentProps<T>, "key" | "ref">,
    >,
> {
    key: Key
    | null;
    props: P;
    type: Exclude;
}

Параметры типа

Иерархия (Просмотр сводки)

Индекс

Свойства

Свойства

key: Key | null
props: P
type: Exclude