@rcsb/rcsb-saguaro
    Preparing search index...

    Interface RcsbFvRowMarkInterface<T>

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

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

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

    Type Declaration

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