interface RcsbFvRowMarkInterface<T> {
    clickCallback?: () => void;
    externalRowMark?: {
        component: {
            prototype: Component<any, any, any>;
            new (props: T): Component<T, {}, any>;
        };
        props: T;
    };
    hoverCallback?: () => void;
    isGlowing: boolean;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

clickCallback?: () => void
externalRowMark?: {
    component: {
        prototype: Component<any, any, any>;
        new (props: T): Component<T, {}, any>;
    };
    props: T;
}
hoverCallback?: () => void
isGlowing: boolean